diff options
author | Brad King <brad.king@kitware.com> | 2020-07-21 17:41:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-07-22 17:42:58 (GMT) |
commit | 4ac9ee10ade455d50c5ca687876f30fd9e0b640a (patch) | |
tree | a4693204bcc2e09e0eb8259167090a3a0292a751 /Tests/RunCMake/InterfaceLibrary/genex_link.cmake | |
parent | d45f0d719e0be324959d7ba5e9d84596592fc19a (diff) | |
download | CMake-4ac9ee10ade455d50c5ca687876f30fd9e0b640a.zip CMake-4ac9ee10ade455d50c5ca687876f30fd9e0b640a.tar.gz CMake-4ac9ee10ade455d50c5ca687876f30fd9e0b640a.tar.bz2 |
Tests: Rename test RunCMake.{interface_library => InterfaceLibrary}
Our RunCMake.<lower-case> namespace is meant for testing individual
CMake language commands.
Diffstat (limited to 'Tests/RunCMake/InterfaceLibrary/genex_link.cmake')
-rw-r--r-- | Tests/RunCMake/InterfaceLibrary/genex_link.cmake | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/RunCMake/InterfaceLibrary/genex_link.cmake b/Tests/RunCMake/InterfaceLibrary/genex_link.cmake new file mode 100644 index 0000000..0dbf029 --- /dev/null +++ b/Tests/RunCMake/InterfaceLibrary/genex_link.cmake @@ -0,0 +1,22 @@ + +cmake_minimum_required(VERSION 2.8.12.20131125 FATAL_ERROR) + +project(genex_link) + +set(_main_cpp ${CMAKE_CURRENT_BINARY_DIR}/main.cpp) +file(WRITE ${_main_cpp} + "int main(int argc, char** argv) { return 0; }\n" +) + +add_library(foo::bar INTERFACE IMPORTED) +set_target_properties(foo::bar + PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}" + # When not using a generator expression here, no error is generated + INTERFACE_LINK_LIBRARIES "$<$<NOT:$<CONFIG:DEBUG>>:foo_bar.lib>" +) + +add_executable(main ${_main_cpp}) +target_include_directories(main PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}") + +target_link_libraries(main foo::bar) |