From 9f8463751ad857961bcdfee189feec24fd149864 Mon Sep 17 00:00:00 2001 From: Leo Aimone <54671358+Laimonade@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:29:51 +0100 Subject: [PATCH] Update CMakeLists.txt Missing upper-case character letter in PLUGIN_CODE for GarageBand compatibility. --- .../002_minimal_plugin_cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Part1_GettingStarted/002_minimal_plugin_cmake/CMakeLists.txt b/src/Part1_GettingStarted/002_minimal_plugin_cmake/CMakeLists.txt index 88fb337..78b3cdd 100644 --- a/src/Part1_GettingStarted/002_minimal_plugin_cmake/CMakeLists.txt +++ b/src/Part1_GettingStarted/002_minimal_plugin_cmake/CMakeLists.txt @@ -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