Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ endif()

option(INTERNAL_TEST OFF)
option(CI_TEST OFF)
option(JUCE_COPY_PLUGIN_AFTER_BUILD "Automatically copy built plugins to standard locations after build" ON)

if(APPLE)
# Add vendored libraries path (for CI/GitHub Actions)
Expand Down
2 changes: 1 addition & 1 deletion audioelementplugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ juce_add_plugin(AudioElementPlugin
NEEDS_MIDI_OUTPUT FALSE
IS_MIDI_EFFECT FALSE
EDITOR_WANTS_KEYBOARD_FOCUS FALSE
COPY_PLUGIN_AFTER_BUILD TRUE
COPY_PLUGIN_AFTER_BUILD ${JUCE_COPY_PLUGIN_AFTER_BUILD}
FORMATS ${PLUGIN_FORMATS}
PRODUCT_NAME ${AUDIO_ELEMENT_PRODUCT_NAME}
AAX_CATEGORY "AAX_ePlugInCategory_SoundField")
Expand Down
2 changes: 1 addition & 1 deletion rendererplugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ juce_add_plugin(RendererPlugin
NEEDS_MIDI_OUTPUT FALSE
IS_MIDI_EFFECT FALSE
EDITOR_WANTS_KEYBOARD_FOCUS FALSE
COPY_PLUGIN_AFTER_BUILD TRUE
COPY_PLUGIN_AFTER_BUILD ${JUCE_COPY_PLUGIN_AFTER_BUILD}
FORMATS ${PLUGIN_FORMATS}
PRODUCT_NAME ${RENDERER_PRODUCT_NAME}
AAX_CATEGORY "AAX_ePlugInCategory_SWGenerators")
Expand Down