Only set VST3 chainloader sources when enabled

This commit is contained in:
Robbert van der Helm
2022-08-23 15:28:55 +02:00
parent a172b0ad06
commit beed7963ec
+2
View File
@@ -18,6 +18,7 @@ vst2_chainloader_sources = files(
'vst2-chainloader.cpp', 'vst2-chainloader.cpp',
) )
if with_vst3
vst3_chainloader_sources = files( vst3_chainloader_sources = files(
'../common/logging/common.cpp', '../common/logging/common.cpp',
'../common/linking.cpp', '../common/linking.cpp',
@@ -26,3 +27,4 @@ vst3_chainloader_sources = files(
'utils.cpp', 'utils.cpp',
'vst3-chainloader.cpp', 'vst3-chainloader.cpp',
) )
endif