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
+10 -8
View File
@@ -18,11 +18,13 @@ vst2_chainloader_sources = files(
'vst2-chainloader.cpp',
)
vst3_chainloader_sources = files(
'../common/logging/common.cpp',
'../common/linking.cpp',
'../common/notifications.cpp',
'../common/process.cpp',
'utils.cpp',
'vst3-chainloader.cpp',
)
if with_vst3
vst3_chainloader_sources = files(
'../common/logging/common.cpp',
'../common/linking.cpp',
'../common/notifications.cpp',
'../common/process.cpp',
'utils.cpp',
'vst3-chainloader.cpp',
)
endif