aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/Helpers.cmake
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-03-13 15:28:19 +0100
committerHarald Eilertsen <haraldei@anduin.net>2021-03-13 15:32:37 +0100
commit106f47f645ccb8a0b6eb8e37f76c17e8aa39b67d (patch)
treeb6d97cff8a8b17bebe1cb5b757a334e39242e6ff /plugins/LV2/Helpers.cmake
parentcccd83938fd33631c36dd5e22ea2364a12fe5305 (diff)
downloadairwindows-lv2-port-106f47f645ccb8a0b6eb8e37f76c17e8aa39b67d.tar.gz
airwindows-lv2-port-106f47f645ccb8a0b6eb8e37f76c17e8aa39b67d.tar.bz2
airwindows-lv2-port-106f47f645ccb8a0b6eb8e37f76c17e8aa39b67d.zip
Move all plugins into bundle.
As suggested by @dromer@github.com, this moves all Airwindows plugins into a separate bundle. This cleans up the lv2 directory quite a bit.
Diffstat (limited to 'plugins/LV2/Helpers.cmake')
-rwxr-xr-xplugins/LV2/Helpers.cmake3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/LV2/Helpers.cmake b/plugins/LV2/Helpers.cmake
index c3ec543..04cc8ee 100755
--- a/plugins/LV2/Helpers.cmake
+++ b/plugins/LV2/Helpers.cmake
@@ -5,11 +5,10 @@ function(add_airwindows_plugin name)
add_library(${name} MODULE ${plug_src})
- set(TARGET_DIR ${CMAKE_CURRENT_BINARY_DIR}/lv2/${name})
+ set(TARGET_DIR ${CMAKE_CURRENT_BINARY_DIR}/airwindows.lv2/)
set_target_properties(${name} PROPERTIES
PREFIX ""
LIBRARY_OUTPUT_DIRECTORY ${TARGET_DIR})
- configure_file(src/${name}/manifest.ttl.in ${TARGET_DIR}/manifest.ttl @ONLY)
configure_file(src/${name}/${name}.ttl ${TARGET_DIR}/${name}.ttl COPYONLY)
endfunction(add_airwindows_plugin)