Patch the rest of the VST3 SDK for winegcc

This commit is contained in:
Robbert van der Helm
2020-11-29 19:18:45 +01:00
parent e7e1387c30
commit 6c26168303
2 changed files with 23 additions and 4 deletions
+13
View File
@@ -183,6 +183,19 @@ if with_vst3
override_options : ['warning_level=0'],
native : false,
)
vst3_sdk_hosting_wine = static_library(
'sdk_hosting_wine',
vst3.get_variable('sdk_common_sources') + vst3.get_variable('sdk_hosting_sources'),
link_with : [vst3_base_wine, vst3_pluginterfaces_wine],
cpp_args : vst3_compiler_options + vst3_wine_compiler_options + ['-Wno-multichar'],
include_directories : vst3_include_dir,
override_options : ['warning_level=0'],
native : false,
)
vst3_sdk_hosting_wine_dep = declare_dependency(
link_with : vst3_sdk_hosting_wine,
include_directories : vst3_include_dir,
)
else
message('VST3 support has been disabled')
endif