asb2m10 / dexed

DX7 FM multi plaform/multi format plugin
GNU General Public License v3.0
2.8k stars 241 forks source link

How to disable VST? #340

Closed yurivict closed 2 years ago

yurivict commented 2 years ago

Build on FreeBSD fails for me with:

error To build JUCE VST3 plug-ins on BSD you must use an external BSD-compatible VST3 SDK with JUCE_CUSTOM_VST3_SDK=1

How to disable VST for now?

For reference, the Surge XT project had the same issue but building with -DJUCE_PLUGINHOST_VST3=OFF -DJUCE_PLUGINHOST_VST=OFF helped. This doesn't help for dexed.

probonopd commented 2 years ago

If you just would like to build the standalone executable (not as a VST3 plugin):

cmake -Bbuild
cmake --build build --target Dexed_Standalone

https://github.com/asb2m10/dexed/issues/322#issuecomment-1096992776

haenkel commented 2 years ago

Skipping VST3 is not an option in CMakeLists yet, but can be added so you could build with -DDEXED_SKIP_VST3=1 as it is in surge now. Is that what you mean @yurivict ?

yurivict commented 2 years ago

Is that what you mean @yurivict ?

Yes. In order to move the FreeBSD port forward such option is needed for now.