diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2016-12-29 22:11:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-09 21:00:39 (GMT) |
commit | 98f2143305b8b8c5ce08dfa38ee79750696865a6 (patch) | |
tree | 3997bb25e7b426e6c5b1f69256671cd584be40fe /Tests | |
parent | 2da3ae3bf76def94d3177f963703e3672ee27f1c (diff) | |
download | CMake-98f2143305b8b8c5ce08dfa38ee79750696865a6.zip CMake-98f2143305b8b8c5ce08dfa38ee79750696865a6.tar.gz CMake-98f2143305b8b8c5ce08dfa38ee79750696865a6.tar.bz2 |
cmTarget: Enforce TYPE being a read-only property
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/RunCMake/set_property/RunCMakeTest.cmake | 1 | ||||
-rw-r--r-- | Tests/RunCMake/set_property/TYPE-result.txt | 1 | ||||
-rw-r--r-- | Tests/RunCMake/set_property/TYPE-stderr.txt | 1 | ||||
-rw-r--r-- | Tests/RunCMake/set_property/TYPE.cmake | 2 |
4 files changed, 5 insertions, 0 deletions
diff --git a/Tests/RunCMake/set_property/RunCMakeTest.cmake b/Tests/RunCMake/set_property/RunCMakeTest.cmake index 37c7124..1ddacee 100644 --- a/Tests/RunCMake/set_property/RunCMakeTest.cmake +++ b/Tests/RunCMake/set_property/RunCMakeTest.cmake @@ -6,4 +6,5 @@ run_cmake(COMPILE_OPTIONS) run_cmake(INCLUDE_DIRECTORIES) run_cmake(LINK_LIBRARIES) run_cmake(SOURCES) +run_cmake(TYPE) run_cmake(USER_PROP) diff --git a/Tests/RunCMake/set_property/TYPE-result.txt b/Tests/RunCMake/set_property/TYPE-result.txt new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/Tests/RunCMake/set_property/TYPE-result.txt @@ -0,0 +1 @@ +1 diff --git a/Tests/RunCMake/set_property/TYPE-stderr.txt b/Tests/RunCMake/set_property/TYPE-stderr.txt new file mode 100644 index 0000000..fbc8653 --- /dev/null +++ b/Tests/RunCMake/set_property/TYPE-stderr.txt @@ -0,0 +1 @@ +TYPE property is read-only diff --git a/Tests/RunCMake/set_property/TYPE.cmake b/Tests/RunCMake/set_property/TYPE.cmake new file mode 100644 index 0000000..8481266 --- /dev/null +++ b/Tests/RunCMake/set_property/TYPE.cmake @@ -0,0 +1,2 @@ +add_custom_target(CustomTarget) +set_property(TARGET CustomTarget PROPERTY TYPE foo) |