diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-26 23:29:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-04 10:28:57 (GMT) |
commit | 79db8ef78d567e518295abc0ffff3140103203b3 (patch) | |
tree | bd2d88d22871cca720e65e1b7a83cc0d696064c5 /Tests/RunCMake/CompatibleInterface/InterfaceString-Bool-Conflict.cmake | |
parent | 43340a9c96212559e83d347b9e3ecebf98ed8aac (diff) | |
download | CMake-79db8ef78d567e518295abc0ffff3140103203b3.zip CMake-79db8ef78d567e518295abc0ffff3140103203b3.tar.gz CMake-79db8ef78d567e518295abc0ffff3140103203b3.tar.bz2 |
cmTarget: Fix the property compatibility error message
Don't refer to 'both', but a 'mixture'. List all compatible interface
property types possible.
Add another test for a mixture of three compatibilities.
Diffstat (limited to 'Tests/RunCMake/CompatibleInterface/InterfaceString-Bool-Conflict.cmake')
-rw-r--r-- | Tests/RunCMake/CompatibleInterface/InterfaceString-Bool-Conflict.cmake | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tests/RunCMake/CompatibleInterface/InterfaceString-Bool-Conflict.cmake b/Tests/RunCMake/CompatibleInterface/InterfaceString-Bool-Conflict.cmake index 711368a..4bae804 100644 --- a/Tests/RunCMake/CompatibleInterface/InterfaceString-Bool-Conflict.cmake +++ b/Tests/RunCMake/CompatibleInterface/InterfaceString-Bool-Conflict.cmake @@ -1,9 +1,8 @@ add_library(foo UNKNOWN IMPORTED) -add_library(bar UNKNOWN IMPORTED) set_property(TARGET foo APPEND PROPERTY COMPATIBLE_INTERFACE_BOOL SOMETHING) set_property(TARGET foo APPEND PROPERTY COMPATIBLE_INTERFACE_STRING SOMETHING) add_executable(user main.cpp) -target_link_libraries(user foo bar) +target_link_libraries(user foo) |