diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-05-31 14:29:13 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-05-31 14:29:13 (GMT) |
commit | 2f07e8e8f8f4890eb489ab43eb111c839235179b (patch) | |
tree | fede0d9102c440e4c0df7548f25c3a535189cd8e /Tests/Properties/CMakeLists.txt | |
parent | 5a6a3cd8698b82afef98e4d46af8bba22ca56529 (diff) | |
download | CMake-2f07e8e8f8f4890eb489ab43eb111c839235179b.zip CMake-2f07e8e8f8f4890eb489ab43eb111c839235179b.tar.gz CMake-2f07e8e8f8f4890eb489ab43eb111c839235179b.tar.bz2 |
ENH: added new test for SourceFile objects and properties
Diffstat (limited to 'Tests/Properties/CMakeLists.txt')
-rw-r--r-- | Tests/Properties/CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Tests/Properties/CMakeLists.txt b/Tests/Properties/CMakeLists.txt new file mode 100644 index 0000000..d67f3ee --- /dev/null +++ b/Tests/Properties/CMakeLists.txt @@ -0,0 +1,27 @@ +# a simple CXX only test case +project (Properties) + +# these first three tests really test both properties and the management of +# cmSourceFile objects by CMake. + +# test properties on a build tree file that is relative (yuck) +configure_file(properties.h.in "${Properties_BINARY_DIR}/properties.h") +set_source_files_properties(properties.h PROPERTIES TEST1 1) +get_source_file_property(RESULT1 properties.h TEST1) + +# test properties on a headerfile in the source tree +# accessed without an extenion (also yuck) +set_source_files_properties(properties2 PROPERTIES TEST2 1) +get_source_file_property(RESULT2 properties2 TEST2) + +# test properties on a relative source that is not generated +set_source_files_properties(SubDir/properties3.cxx PROPERTIES TEST3 1) +get_source_file_property(RESULT3 SubDir/properties3.cxx TEST3) + +include_directories("${Properties_SOURCE_DIR}" "${Properties_BINARY_DIR}") + +if (RESULT1 AND RESULT2 AND RESULT3) + add_executable (Properties SubDir/properties3.cxx) +else (RESULT1 AND RESULT2 AND RESULT3) + message("Error: test results are TEST1=${TEST1} TEST2=${TEST2} TEST3=${TEST3}") +endif (RESULT1 AND RESULT2 AND RESULT3) |