Skip to content

Commit

Permalink
Template example now supports LV2 also.
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Piolat committed Dec 18, 2024
1 parent 03e7684 commit 8a75524
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
13 changes: 13 additions & 0 deletions examples/template/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@
"--version-script=$PACKAGE_DIR/source/module-vst3.ver"
]
},
{
"name": "LV2",
"versions": ["LV2"],
"targetType": "dynamicLibrary",
"lflags-osx-ldc": [
"-exported_symbols_list",
"$PACKAGE_DIR/source/module-lv2.lst",
"-dead_strip"
],
"lflags-linux-ldc": [
"--version-script=$PACKAGE_DIR/source/module-lv2.ver"
]
},
{
"name": "AU",
"versions": [ "AU" ],
Expand Down
3 changes: 3 additions & 0 deletions examples/template/source/module-lv2.lst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
_GenerateManifestFromClient
_lv2_descriptor
_lv2ui_descriptor
4 changes: 4 additions & 0 deletions examples/template/source/module-lv2.ver
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
LV2ABI_1.0 {
global: lv2_descriptor; lv2ui_descriptor; GenerateManifestFromClient;
local: *;
};

0 comments on commit 8a75524

Please sign in to comment.