diff options
author | Brad King <brad.king@kitware.com> | 2019-02-08 19:02:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-02-08 19:02:03 (GMT) |
commit | 3b58b647aedd0f4717c3f22bb7d3e8b0b559f099 (patch) | |
tree | e4f041fab6141917422fd9adc2add245b1c2e724 /Tests | |
parent | 3b87e7aaa3f8a7c9c2b9d552241d20292ee7fd7c (diff) | |
parent | f87e724e8c193df3b9b30ddd0b9d2ec7c6ac2ba7 (diff) | |
download | CMake-3b58b647aedd0f4717c3f22bb7d3e8b0b559f099.zip CMake-3b58b647aedd0f4717c3f22bb7d3e8b0b559f099.tar.gz CMake-3b58b647aedd0f4717c3f22bb7d3e8b0b559f099.tar.bz2 |
Merge branch 'fix-exclude-dir-with-iface' into release-3.14
Merge-request: !2937
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/InterfaceLibrary/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Tests/InterfaceLibrary/excluded/CMakeLists.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Tests/InterfaceLibrary/CMakeLists.txt b/Tests/InterfaceLibrary/CMakeLists.txt index 6aae09a..954c02d 100644 --- a/Tests/InterfaceLibrary/CMakeLists.txt +++ b/Tests/InterfaceLibrary/CMakeLists.txt @@ -47,6 +47,7 @@ target_link_libraries(InterfaceLibrary add_dependencies(InterfaceLibrary item_fake_tgt) add_subdirectory(libsdir) +add_subdirectory(excluded EXCLUDE_FROM_ALL) add_executable(sharedlibtestexe sharedlibtestexe.cpp) target_link_libraries(sharedlibtestexe shared_iface imported::iface) diff --git a/Tests/InterfaceLibrary/excluded/CMakeLists.txt b/Tests/InterfaceLibrary/excluded/CMakeLists.txt new file mode 100644 index 0000000..69a6807 --- /dev/null +++ b/Tests/InterfaceLibrary/excluded/CMakeLists.txt @@ -0,0 +1 @@ +add_library(excluded_iface INTERFACE) |