Skip to content

Commit

Permalink
Merge pull request #2 from filipeborato/release
Browse files Browse the repository at this point in the history
change the name of the plugin
  • Loading branch information
filipeborato authored Jun 27, 2024
2 parents 63cb8c5 + 46ec62a commit 3cf80c8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(AudioPlugin VERSION 0.1.0)

# Adding a directory with the library/application name as a subfolder of the
# include folder is a good practice. It helps avoid name clashes later on.
set(INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include/YourPluginName")
set(INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include/CutOffPlugin")

# Adds a plugin target (that's basically what the Projucer does).
juce_add_plugin(${PROJECT_NAME}
Expand All @@ -16,7 +16,7 @@ juce_add_plugin(${PROJECT_NAME}
PLUGIN_MANUFACTURER_CODE MCMP # change this
PLUGIN_CODE EXPL # change this
FORMATS VST3 # may change this
PRODUCT_NAME "YourPluginName" # change this
PRODUCT_NAME "CutOffPlugin" # change this
)

# Sets the source files of the plugin project.
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions plugin/source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
==============================================================================
*/

#include "YourPluginName/PluginProcessor.h"
#include "YourPluginName/PluginEditor.h"
#include "CutOffPlugin/PluginProcessor.h"
#include "CutOffPlugin/PluginEditor.h"

//==============================================================================
LPHPFilterAudioProcessorEditor::LPHPFilterAudioProcessorEditor (LPHPFilterAudioProcessor& p, juce::AudioProcessorValueTreeState& vts)
Expand Down
4 changes: 2 additions & 2 deletions plugin/source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
==============================================================================
*/

#include "YourPluginName/PluginProcessor.h"
#include "YourPluginName/PluginEditor.h"
#include "CutOffPlugin/PluginProcessor.h"
#include "CutOffPlugin/PluginEditor.h"


//==============================================================================
Expand Down
4 changes: 2 additions & 2 deletions test/source/AudioProcessorTest.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <YourPluginName/PluginProcessor.h>
#include <CutOffPlugin/PluginProcessor.h>
#include <gtest/gtest.h>

namespace audio_plugin_test {
TEST(AudioProcessor, Foo) {
audio_plugin::AudioPluginAudioProcessor processor{};
//audio_plugin::AudioPluginAudioProcessor processor{};
}
} // namespace audio_plugin_test

0 comments on commit 3cf80c8

Please sign in to comment.