mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-17 00:43:56 +02:00
Add minimal boilerplate for a CLAP plugin
This commit is contained in:
@@ -14,6 +14,22 @@ vst2_plugin_deps = [
|
||||
tomlplusplus_dep,
|
||||
]
|
||||
|
||||
if with_clap
|
||||
clap_plugin_deps = [
|
||||
configuration_dep,
|
||||
|
||||
asio_dep,
|
||||
bitsery_dep,
|
||||
clap_dep,
|
||||
dl_dep,
|
||||
function2_dep,
|
||||
ghc_filesystem_dep,
|
||||
rt_dep,
|
||||
threads_dep,
|
||||
tomlplusplus_dep,
|
||||
]
|
||||
endif
|
||||
|
||||
if with_vst3
|
||||
vst3_plugin_deps = [
|
||||
configuration_dep,
|
||||
@@ -50,6 +66,12 @@ vst2_plugin_sources = files(
|
||||
'vst2-plugin.cpp',
|
||||
)
|
||||
|
||||
if with_clap
|
||||
clap_plugin_sources = files(
|
||||
'clap-plugin.cpp',
|
||||
)
|
||||
endif
|
||||
|
||||
if with_vst3
|
||||
vst3_plugin_sources = files(
|
||||
'../common/communication/common.cpp',
|
||||
|
||||
Reference in New Issue
Block a user