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/add_definitions_command | |
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/add_definitions_command')
-rw-r--r-- | Tests/CompileDefinitions/add_definitions_command/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CompileDefinitions/add_definitions_command/CMakeLists.txt b/Tests/CompileDefinitions/add_definitions_command/CMakeLists.txt index 4ca269d..a6372af 100644 --- a/Tests/CompileDefinitions/add_definitions_command/CMakeLists.txt +++ b/Tests/CompileDefinitions/add_definitions_command/CMakeLists.txt @@ -4,4 +4,4 @@ project(add_definitions_command) add_definitions(-DCMAKE_IS_FUN -DCMAKE_IS=Fun -DCMAKE_IS_="Fun" -DCMAKE_IS_REALLY="Very Fun") add_definitions(-DCMAKE_IS_="Fun" -DCMAKE_IS_REALLY="Very Fun" -DCMAKE_IS_FUN -DCMAKE_IS=Fun) -add_executable(add_definitions_command_executable ../main.cpp) +add_executable(add_definitions_command_executable ../compiletest.cpp) |