summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/export/ForbiddenToExportInterfaceProperties.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/export/ForbiddenToExportInterfaceProperties.cmake')
-rw-r--r--Tests/RunCMake/export/ForbiddenToExportInterfaceProperties.cmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/RunCMake/export/ForbiddenToExportInterfaceProperties.cmake b/Tests/RunCMake/export/ForbiddenToExportInterfaceProperties.cmake
new file mode 100644
index 0000000..bab8de0
--- /dev/null
+++ b/Tests/RunCMake/export/ForbiddenToExportInterfaceProperties.cmake
@@ -0,0 +1,12 @@
+enable_language(CXX)
+add_library(foo empty.cpp)
+set_target_properties(foo PROPERTIES
+ INTERFACE_FOOBAR "Some string"
+ EXPORT_PROPERTIES "INTERFACE_FOOBAR"
+)
+export(TARGETS foo FILE "${CMAKE_CURRENT_BINARY_DIR}/foo.cmake")
+install(TARGETS foo EXPORT fooExport
+ RUNTIME DESTINATION bin
+ LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION lib
+)