summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/FileAPI/include_test.cmake
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2018-11-09 18:54:41 (GMT)
committerBrad King <brad.king@kitware.com>2018-12-12 14:45:49 (GMT)
commitea0a0601682af00706cf57f6d3e27d4f0895ecbb (patch)
tree539ef9baee753df0254f5c207dcc3d0dc56af949 /Tests/RunCMake/FileAPI/include_test.cmake
parent3e922ceb5e8cc4c4d72ddcbd8b485803c49d84f1 (diff)
downloadCMake-ea0a0601682af00706cf57f6d3e27d4f0895ecbb.zip
CMake-ea0a0601682af00706cf57f6d3e27d4f0895ecbb.tar.gz
CMake-ea0a0601682af00706cf57f6d3e27d4f0895ecbb.tar.bz2
fileapi: Add test for codemodel v2
Diffstat (limited to 'Tests/RunCMake/FileAPI/include_test.cmake')
-rw-r--r--Tests/RunCMake/FileAPI/include_test.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/RunCMake/FileAPI/include_test.cmake b/Tests/RunCMake/FileAPI/include_test.cmake
new file mode 100644
index 0000000..c74d264
--- /dev/null
+++ b/Tests/RunCMake/FileAPI/include_test.cmake
@@ -0,0 +1,9 @@
+add_library(interface_lib INTERFACE)
+target_compile_definitions(interface_lib INTERFACE COMPILED_WITH_INTERFACE_LIB)
+add_executable(interface_exe empty.c)
+target_link_libraries(interface_exe PRIVATE inteface_lib)
+set_property(TARGET interface_exe PROPERTY ENABLE_EXPORTS ON)
+set_property(TARGET interface_exe PROPERTY RUNTIME_OUTPUT_DIRECTORY bin)
+set_property(TARGET interface_exe PROPERTY ARCHIVE_OUTPUT_DIRECTORY lib)
+set_property(TARGET interface_exe PROPERTY OUTPUT_NAME my_interface_exe)
+set_property(TARGET interface_exe PROPERTY SUFFIX .myexe)