1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

UnitTestsDemo: Enable LV2 hosting, so that the Projucer correctly sets up include paths

This commit is contained in:
reuk 2022-06-24 19:44:48 +01:00
parent 6dc002b89c
commit e86b886038
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
2 changed files with 8 additions and 3 deletions

View file

@ -36,7 +36,7 @@
juce_opengl, juce_osc, juce_product_unlocking, juce_video
exporters: xcode_mac, vs2022, linux_make, androidstudio, xcode_iphone
moduleFlags: JUCE_STRICT_REFCOUNTEDPOINTER=1,JUCE_PLUGINHOST_VST3=1
moduleFlags: JUCE_STRICT_REFCOUNTEDPOINTER=1,JUCE_PLUGINHOST_VST3=1,JUCE_PLUGINHOST_LV2=1
defines: JUCE_UNIT_TESTS=1
type: Component

View file

@ -225,6 +225,11 @@ private:
#include "format_types/juce_LV2PluginFormat.cpp"
#if JUCE_UNIT_TESTS
#include "format_types/juce_VST3PluginFormat_test.cpp"
#include "format_types/juce_LV2PluginFormat_test.cpp"
#if JUCE_PLUGINHOST_VST3
#include "format_types/juce_VST3PluginFormat_test.cpp"
#endif
#if JUCE_PLUGINHOST_LV2
#include "format_types/juce_LV2PluginFormat_test.cpp"
#endif
#endif