summaryrefslogtreecommitdiffstats
path: root/Tests/CompileDefinitions
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-08-22 11:03:56 (GMT)
committerStephen Kelly <steveire@gmail.com>2012-08-22 11:05:07 (GMT)
commitf0a1065393a57f503bc2c86f432f50dd4b8d5bbd (patch)
treea09cac6eebae31ce3a3fc24585b350eea652e201 /Tests/CompileDefinitions
parentca7fb14f9b966805cb11fdf71648337b71c1047b (diff)
downloadCMake-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')
-rw-r--r--Tests/CompileDefinitions/CMakeLists.txt4
-rw-r--r--Tests/CompileDefinitions/add_definitions_command/CMakeLists.txt2
-rw-r--r--Tests/CompileDefinitions/add_definitions_command_with_target_prop/CMakeLists.txt2
-rw-r--r--Tests/CompileDefinitions/compiletest.cpp (renamed from Tests/CompileDefinitions/main.cpp)0
-rw-r--r--Tests/CompileDefinitions/target_prop/CMakeLists.txt2
5 files changed, 5 insertions, 5 deletions
diff --git a/Tests/CompileDefinitions/CMakeLists.txt b/Tests/CompileDefinitions/CMakeLists.txt
index 337aeb1..e7d91bf 100644
--- a/Tests/CompileDefinitions/CMakeLists.txt
+++ b/Tests/CompileDefinitions/CMakeLists.txt
@@ -11,6 +11,6 @@ add_subdirectory(add_definitions_command)
add_subdirectory(target_prop)
add_subdirectory(add_definitions_command_with_target_prop)
-file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/main.cpp" "int main(int, char **) { return 0; }\n")
+file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/dummyexecutable.cpp" "int main(int, char **) { return 0; }\n")
-add_executable(CompileDefinitions "${CMAKE_CURRENT_BINARY_DIR}/main.cpp")
+add_executable(CompileDefinitions "${CMAKE_CURRENT_BINARY_DIR}/dummyexecutable.cpp")
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)
diff --git a/Tests/CompileDefinitions/add_definitions_command_with_target_prop/CMakeLists.txt b/Tests/CompileDefinitions/add_definitions_command_with_target_prop/CMakeLists.txt
index 4161ed6..e415390 100644
--- a/Tests/CompileDefinitions/add_definitions_command_with_target_prop/CMakeLists.txt
+++ b/Tests/CompileDefinitions/add_definitions_command_with_target_prop/CMakeLists.txt
@@ -3,7 +3,7 @@ project(add_definitions_command_with_target_prop)
add_definitions(-DCMAKE_IS_FUN -DCMAKE_IS=Fun)
-add_executable(add_definitions_command_with_target_prop_executable ../main.cpp)
+add_executable(add_definitions_command_with_target_prop_executable ../compiletest.cpp)
set_target_properties(add_definitions_command_with_target_prop_executable PROPERTIES COMPILE_DEFINITIONS CMAKE_IS_="Fun")
diff --git a/Tests/CompileDefinitions/main.cpp b/Tests/CompileDefinitions/compiletest.cpp
index 6db6f3f..6db6f3f 100644
--- a/Tests/CompileDefinitions/main.cpp
+++ b/Tests/CompileDefinitions/compiletest.cpp
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)