diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-08-22 11:03:56 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-08-22 11:05:07 (GMT) |
commit | f0a1065393a57f503bc2c86f432f50dd4b8d5bbd (patch) | |
tree | a09cac6eebae31ce3a3fc24585b350eea652e201 /Tests/CompileDefinitions/target_prop | |
parent | ca7fb14f9b966805cb11fdf71648337b71c1047b (diff) | |
download | CMake-f0a1065393a57f503bc2c86f432f50dd4b8d5bbd.zip CMake-f0a1065393a57f503bc2c86f432f50dd4b8d5bbd.tar.gz CMake-f0a1065393a57f503bc2c86f432f50dd4b8d5bbd.tar.bz2 |
Rename files from main.cpp to more meaningful names.
Because the main file for the dummy-executable and the actual compile
test were both called main.cpp, they were overwriting each other during
in-source builds.
Diffstat (limited to 'Tests/CompileDefinitions/target_prop')
-rw-r--r-- | Tests/CompileDefinitions/target_prop/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CompileDefinitions/target_prop/CMakeLists.txt b/Tests/CompileDefinitions/target_prop/CMakeLists.txt index 6dbee9a..e2b6ba9 100644 --- a/Tests/CompileDefinitions/target_prop/CMakeLists.txt +++ b/Tests/CompileDefinitions/target_prop/CMakeLists.txt @@ -1,7 +1,7 @@ project(target_prop) -add_executable(target_prop_executable ../main.cpp) +add_executable(target_prop_executable ../compiletest.cpp) set_target_properties(target_prop_executable PROPERTIES COMPILE_DEFINITIONS CMAKE_IS_FUN) |