summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexOneConfig
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-11-19 19:27:43 (GMT)
committerBrad King <brad.king@kitware.com>2007-11-19 19:27:43 (GMT)
commit88b31bd007fcbd92495d1989108c5e9ecf810d48 (patch)
treeceabd1e8936c39f42cecfc7365d1e188938a4c21 /Tests/ComplexOneConfig
parent37e8c118272dc261a01b776bd7683ed0b869aa7a (diff)
downloadCMake-88b31bd007fcbd92495d1989108c5e9ecf810d48.zip
CMake-88b31bd007fcbd92495d1989108c5e9ecf810d48.tar.gz
CMake-88b31bd007fcbd92495d1989108c5e9ecf810d48.tar.bz2
ENH: Adding test for using HEADER_FILE_ONLY to avoid building a .cxx file.
Diffstat (limited to 'Tests/ComplexOneConfig')
-rw-r--r--Tests/ComplexOneConfig/Executable/CMakeLists.txt6
-rw-r--r--Tests/ComplexOneConfig/Executable/complex_nobuild.cxx1
2 files changed, 6 insertions, 1 deletions
diff --git a/Tests/ComplexOneConfig/Executable/CMakeLists.txt b/Tests/ComplexOneConfig/Executable/CMakeLists.txt
index 12ebd26..1d56f0c 100644
--- a/Tests/ComplexOneConfig/Executable/CMakeLists.txt
+++ b/Tests/ComplexOneConfig/Executable/CMakeLists.txt
@@ -19,10 +19,14 @@ ENDIF(COMPLEX_TEST_CMAKELIB)
SET(COMPLEX_LIBS CMakeTestLibrary;CMakeTestLibraryShared;CMakeTestCLibraryShared)
LINK_LIBRARIES(${COMPLEX_LIBS})
+# Test forcing a .cxx file to not build.
+SET_SOURCE_FILES_PROPERTIES(complex_nobuild.cxx PROPERTIES
+ HEADER_FILE_ONLY 1)
+
ADD_EXECUTABLE(A A.cxx A.hh A.h A.txt)
ADD_EXECUTABLE(complex complex testcflags.c )
# Sub1/NameConflictTest.c Sub2/NameConflictTest.c)
-ADD_EXECUTABLE(complex.file complex.file.cxx)
+ADD_EXECUTABLE(complex.file complex.file.cxx complex_nobuild.cxx)
IF(COMPLEX_TEST_CMAKELIB)
TARGET_LINK_LIBRARIES(complex CMakeLib cmsys cmexpat cmzlib cmtar)
ENDIF(COMPLEX_TEST_CMAKELIB)
diff --git a/Tests/ComplexOneConfig/Executable/complex_nobuild.cxx b/Tests/ComplexOneConfig/Executable/complex_nobuild.cxx
new file mode 100644
index 0000000..6b3c2c1
--- /dev/null
+++ b/Tests/ComplexOneConfig/Executable/complex_nobuild.cxx
@@ -0,0 +1 @@
+#error "This file should not be compiled."