Skip to content
Snippets Groups Projects
Commit 8a21eaaa authored by Christopher Stawarz's avatar Christopher Stawarz
Browse files

Added implementation of ExampleEditor destructor (so ExampleProcessor plugin...

Added implementation of ExampleEditor destructor (so ExampleProcessor plugin will load if compiled).  Removed OS X settings from ExampleProcessor Makefile.
parent e1c47f67
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,10 @@ ExampleEditor::ExampleEditor(GenericProcessor* parentNode, bool useDefaultParame
addAndMakeVisible(exampleButton);
}
ExampleEditor::~ExampleEditor()
{
}
/**
The listener methods that reacts to the button click. The same method is called for all buttons
on the editor, so the button variable, which cointains a pointer to the button that called the method
......
......@@ -10,12 +10,6 @@ VPATH := $(SOURCE_DIRS)
SRC := $(foreach sdir,$(SRC_DIR),$(wildcard $(sdir)/*.cpp))
OBJ := $(addprefix $(OBJDIR)/,$(notdir $(SRC:.cpp=.o)))
#Library paths for OSX, can be removed if no external libraries are needed
ifeq ($(OS),Darwin)
CXXFLAGS := $(CXXFLAGS) -I/opt/local/include
LDFLAGS := $(LDFLAGS) -L/opt/local/lib
endif
#Extra macros and libraries needed by the plugin
#CXXFLAGS := $(CXXFLAGS) -D EXAMPLE_MACRO
#LDFLAGS := $(LDFLAGS) -lExampleLib
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment