diff options
Diffstat (limited to 'templates/tde_export_library.cmake')
-rw-r--r-- | templates/tde_export_library.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/tde_export_library.cmake b/templates/tde_export_library.cmake new file mode 100644 index 0000000..4d6cb3f --- /dev/null +++ b/templates/tde_export_library.cmake @@ -0,0 +1,7 @@ +add_library( @_target@ @_type@ IMPORTED ) + +set_target_properties( @_target@ PROPERTIES + IMPORTED_LINK_INTERFACE_LIBRARIES "@_shared_libs@" + IMPORTED_LOCATION "@_location@" + IMPORTED_SONAME "@_soname@" ) + |