@@ -12,13 +12,13 @@ cmake_minimum_required(VERSION 3.22)
1212
1313set (CMAKE_EXPORT_COMPILE_COMMANDS ON )
1414
15- set (CMAKE_BUILD_TYPE Debug)
15+ # set(CMAKE_BUILD_TYPE Debug)
1616
1717# The top-level CMakeLists.txt file for a project must contain a literal, direct call to the
1818# `project()` command. `project()` sets up some helpful variables that describe source/binary
1919# directories, and the current project version. This is a standard CMake command.
2020
21- project (RSAlgorithmicVerb VERSION 0.5.4 )
21+ project (RSAlgorithmicVerb VERSION 0.5.5 )
2222
2323# If you've installed JUCE somehow (via a package manager, or directly using the CMake install
2424# target), you'll need to tell this project that it depends on the installed copy of JUCE. If you've
@@ -53,9 +53,9 @@ juce_add_plugin(${PROJECT_NAME}
5353 # NEEDS_MIDI_OUTPUT TRUE/FALSE # Does the plugin need midi output?
5454 IS_MIDI_EFFECT FALSE # Is this plugin a MIDI effect?
5555 # EDITOR_WANTS_KEYBOARD_FOCUS TRUE/FALSE # Does the editor need keyboard focus?
56- COPY_PLUGIN_AFTER_BUILD TRUE # Should the plugin be installed to a default location after building?
57- VST3_COPY_DIR "/Library/Audio/Plug-Ins/VST3"
58- AU_COPY_DIR "/Library/Audio/Plug-Ins/Components"
56+ # COPY_PLUGIN_AFTER_BUILD TRUE # Should the plugin be installed to a default location after building?
57+ # VST3_COPY_DIR "/Library/Audio/Plug-Ins/VST3"
58+ # AU_COPY_DIR "/Library/Audio/Plug-Ins/Components"
5959 PLUGIN_MANUFACTURER_CODE Rspi # A four-character manufacturer id with at least one upper-case character
6060 PLUGIN_CODE Rsav # A unique four-character plugin id with exactly one upper-case character
6161 # GarageBand 10.3 requires the first letter to be upper-case, and the remaining letters to be lower-case
0 commit comments