aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/lv2/lv2-config.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/lv2/lv2-config.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/lv2/lv2-config.cmake')
-rw-r--r--vcpkg/ports/lv2/lv2-config.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/vcpkg/ports/lv2/lv2-config.cmake b/vcpkg/ports/lv2/lv2-config.cmake
new file mode 100644
index 0000000..5bb249d
--- /dev/null
+++ b/vcpkg/ports/lv2/lv2-config.cmake
@@ -0,0 +1,13 @@
+if(NOT TARGET lv2::lv2)
+ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
+
+ add_library(lv2::lv2 INTERFACE IMPORTED)
+
+ set_target_properties(lv2::lv2 PROPERTIES
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
+ )
+
+ unset(_IMPORT_PREFIX)
+endif()