Skip to content

Commit

Permalink
Update CMakeLists.txt
Browse files Browse the repository at this point in the history
Missing upper-case character letter in PLUGIN_CODE for GarageBand compatibility.
  • Loading branch information
Laimonade authored Jul 25, 2024
1 parent bd488ea commit 9f84637
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ juce_add_plugin(minimal_plugin
# EDITOR_WANTS_KEYBOARD_FOCUS TRUE/FALSE # Does the editor need keyboard focus?
COPY_PLUGIN_AFTER_BUILD TRUE # Should the plugin be installed to a default location after building?
PLUGIN_MANUFACTURER_CODE Yeek # A four-character manufacturer id with at least one upper-case character
PLUGIN_CODE abc1 # A unique four-character plugin id with exactly one upper-case character
PLUGIN_CODE Abc1 # A unique four-character plugin id with exactly one upper-case character
# GarageBand 10.3 requires the first letter to be upper-case, and the remaining letters to be lower-case
FORMATS AU VST3 Standalone # The formats to build. Other valid formats are: AAX Unity VST AU AUv3
PRODUCT_NAME "minimal_plugin") # The name of the final executable, which can differ from the target name
Expand Down

0 comments on commit 9f84637

Please sign in to comment.