Add a CLAP chainloader

The functions it's supposed to load however don't exist yet.
This commit is contained in:
Robbert van der Helm
2022-08-23 15:55:12 +02:00
parent 98bb4a019b
commit ffad63d439
4 changed files with 188 additions and 10 deletions
+15
View File
@@ -9,6 +9,10 @@ chainloader_deps = [
rt_dep,
]
if with_clap
clap_chainloader_deps = chainloader_deps + [clap_dep]
endif
vst2_chainloader_sources = files(
'../common/logging/common.cpp',
'../common/linking.cpp',
@@ -18,6 +22,17 @@ vst2_chainloader_sources = files(
'vst2-chainloader.cpp',
)
if with_clap
clap_chainloader_sources = files(
'../common/logging/common.cpp',
'../common/linking.cpp',
'../common/notifications.cpp',
'../common/process.cpp',
'utils.cpp',
'clap-chainloader.cpp',
)
endif
if with_vst3
vst3_chainloader_sources = files(
'../common/logging/common.cpp',