diff options
Diffstat (limited to 'Tests/RunCMake/CMP0022/CMP0022-NOWARN-static.cmake')
-rw-r--r-- | Tests/RunCMake/CMP0022/CMP0022-NOWARN-static.cmake | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Tests/RunCMake/CMP0022/CMP0022-NOWARN-static.cmake b/Tests/RunCMake/CMP0022/CMP0022-NOWARN-static.cmake index ad3b8df..3e4144f 100644 --- a/Tests/RunCMake/CMP0022/CMP0022-NOWARN-static.cmake +++ b/Tests/RunCMake/CMP0022/CMP0022-NOWARN-static.cmake @@ -5,8 +5,4 @@ add_library(foo STATIC empty_vs6_1.cpp) add_library(bar STATIC empty_vs6_2.cpp) add_library(bat STATIC empty_vs6_3.cpp) target_link_libraries(foo bar) -# The last element here needs to contain a space so that it is a single -# element which is not a valid target name. As bar is a STATIC library, -# this tests that the LINK_ONLY generator expression is not used for -# that element, creating an error. -target_link_libraries(bar bat "-lz -lm") +target_link_libraries(bar bat) |