diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2015-01-08 20:27:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-01-11 16:45:44 (GMT) |
commit | c6d03a1072c8f3ae285f4297caf96637b3a47c22 (patch) | |
tree | 25bdf1297c1157dd04bbb9bd194806671c33ac6f /Tests/RunCMake/get_property/install_properties.cmake | |
parent | 76ff92e0c96fc09813f119770d86bd6edc84820b (diff) | |
download | CMake-c6d03a1072c8f3ae285f4297caf96637b3a47c22.zip CMake-c6d03a1072c8f3ae285f4297caf96637b3a47c22.tar.gz CMake-c6d03a1072c8f3ae285f4297caf96637b3a47c22.tar.bz2 |
tests: add tests for querying properties
Diffstat (limited to 'Tests/RunCMake/get_property/install_properties.cmake')
-rw-r--r-- | Tests/RunCMake/get_property/install_properties.cmake | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/RunCMake/get_property/install_properties.cmake b/Tests/RunCMake/get_property/install_properties.cmake new file mode 100644 index 0000000..aa89225 --- /dev/null +++ b/Tests/RunCMake/get_property/install_properties.cmake @@ -0,0 +1,18 @@ +function (check_install_property file prop) + get_property(gp_val + INSTALL "${file}" + PROPERTY "${prop}") + + message("get_property: -->${gp_val}<--") +endfunction () + +install( + FILES "${CMAKE_CURRENT_LIST_FILE}" + DESTINATION "${CMAKE_CURRENT_LIST_DIR}" + RENAME "installed-file-dest") +set_property(INSTALL "${CMAKE_CURRENT_LIST_FILE}" PROPERTY empty "") +set_property(INSTALL "${CMAKE_CURRENT_LIST_FILE}" PROPERTY custom value) + +check_install_property("${CMAKE_CURRENT_LIST_FILE}" empty) +check_install_property("${CMAKE_CURRENT_LIST_FILE}" custom) +check_install_property("${CMAKE_CURRENT_LIST_FILE}" noexist) |