54 lines
2.2 KiB
CMake
54 lines
2.2 KiB
CMake
# 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}")
|
|
|
|
|
|
# test generic property interfaces
|
|
define_property(GLOBALTEST GLOBAL "A test property"
|
|
"A long description of this test property" 0)
|
|
set_properties(GLOBAL PROPERTIES GLOBALTEST 1)
|
|
set_properties(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
PROPERTIES DIRECTORYTEST 1)
|
|
set_properties(SOURCE_FILE SubDir/properties3.cxx PROPERTIES SOURCETEST 1)
|
|
get_property(GLOBALRESULT GLOBAL GLOBALTEST)
|
|
get_property(DIRECTORYRESULT DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
DIRECTORYTEST)
|
|
get_property(SOURCE_FILERESULT SOURCE_FILE SubDir/properties3.cxx SOURCETEST)
|
|
|
|
if (RESULT1 AND RESULT2 AND RESULT3 AND GLOBALRESULT AND
|
|
DIRECTORYRESULT AND SOURCE_FILERESULT)
|
|
add_executable (Properties SubDir/properties3.cxx)
|
|
else (RESULT1 AND RESULT2 AND RESULT3 AND GLOBALRESULT AND
|
|
DIRECTORYRESULT AND SOURCE_FILERESULT)
|
|
message("Error: test results are RESULT1=${RESULT1} RESULT2=${RESULT2} "
|
|
"RESULT3=${RESULT3} GLOBALRESULT=${GLOBALRESULT} "
|
|
"DIRECTORYRESULT=${DIRECTORYRESULT} "
|
|
"SOURCE_FILERESULT=${SOURCE_FILERESULT}")
|
|
endif (RESULT1 AND RESULT2 AND RESULT3 AND GLOBALRESULT AND
|
|
DIRECTORYRESULT AND SOURCE_FILERESULT)
|
|
|
|
# test the target property
|
|
set_properties(TARGET Properties PROPERTIES TARGETTEST 1)
|
|
get_property(TARGETRESULT TARGET Properties TARGETTEST)
|
|
if (NOT TARGETRESULT)
|
|
message("Error: target result is TARGETRESULT=${TARGETRESULT}")
|
|
endif (NOT TARGETRESULT)
|