Skip to content

Commit 00a7a90

Browse files
committed
(#34) Update cmake files to react_juce
1 parent 2ccb18d commit 00a7a90

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ option(JUCE_BUILD_EXTRAS "Build JUCE Extras" OFF)
88
add_subdirectory(ext/juce)
99

1010
# Adding any custom modules you might have:
11-
juce_add_module(blueprint)
11+
juce_add_module(react_juce)
1212

1313
# If you want to create new projects, you can init them in the examples folder
1414
# and add them here with the add_subdirectory command

examples/GainPlugin/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ juce_add_plugin(GainPlugin
1818
# IS_MIDI_EFFECT TRUE/FALSE # Is this plugin a MIDI effect?
1919
# EDITOR_WANTS_KEYBOARD_FOCUS TRUE/FALSE # Does the editor need keyboard focus?
2020
# COPY_PLUGIN_AFTER_BUILD TRUE/FALSE # Should the plugin be installed to a default location after building?
21-
PLUGIN_MANUFACTURER_CODE Juce # A four-character manufacturer id with at least one upper-case character
21+
PLUGIN_MANUFACTURER_CODE Reju # A four-character manufacturer id with at least one upper-case character
2222
PLUGIN_CODE Dem0 # A unique four-character plugin id with at least one upper-case character
2323
FORMATS AU VST3 Standalone # The formats to build. Other valid formats are: AAX Unity VST AU AUv3
24-
PRODUCT_NAME "BlueprintGainPlugin") # The name of the final executable, which can differ from the target name
24+
PRODUCT_NAME "ReactJUCEGainPlugin") # The name of the final executable, which can differ from the target name
2525

2626
# `juce_generate_juce_header` will create a JuceHeader.h for a given target, which will be generated
2727
# into your build tree. This should be included with `#include <JuceHeader.h>`. The include path for
@@ -39,7 +39,7 @@ target_sources(GainPlugin PRIVATE PluginProcessor.cpp)
3939
# Add an explicit include path here so that Blueprint's EcmascriptEngine can find
4040
# the included Duktape source. You can optionally point this elsewhere if you'd like to
4141
# include a custom Duktape build.
42-
target_include_directories(GainPlugin PRIVATE blueprint/)
42+
target_include_directories(GainPlugin PRIVATE react_juce/)
4343

4444
# `target_compile_definitions` adds some preprocessor definitions to our target. In a Projucer
4545
# project, these might be passed in the 'Preprocessor Definitions' field. JUCE modules also make use
@@ -70,4 +70,4 @@ target_link_libraries(GainPlugin PRIVATE
7070
juce::juce_audio_utils
7171
juce::juce_graphics
7272
juce::juce_gui_basics
73-
blueprint)
73+
react_juce)

0 commit comments

Comments
 (0)