summaryrefslogtreecommitdiff
path: root/vst
diff options
context:
space:
mode:
Diffstat (limited to 'vst')
-rw-r--r--vst/Makefile.am5
-rw-r--r--vst/Makefile.mingw32.in2
-rw-r--r--vst/drumgizmo_vst.cc2
-rw-r--r--vst/drumgizmo_vst.h2
4 files changed, 5 insertions, 6 deletions
diff --git a/vst/Makefile.am b/vst/Makefile.am
index 7bb7214..d6c5c9e 100644
--- a/vst/Makefile.am
+++ b/vst/Makefile.am
@@ -40,7 +40,7 @@ libdg_la_CXXFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/plugingui \
-DUSE_THREAD $(SAMPLERATE_CFLAGS)
nodist_libdrumgizmo_vst_la_SOURCES = \
- $(VST_SOURCES)
+ $(VST_SOURCES)
libdrumgizmo_vst_la_SOURCES = \
drumgizmo_vst.cc \
@@ -50,5 +50,4 @@ libdrumgizmo_vst_la_SOURCES = \
libdrumgizmo_vst_la_LDFLAGS = -no-undefined -shared
libdrumgizmo_vst_la_LIBADD = libdg.la
libdrumgizmo_vst_la_CXXFLAGS = -w $(VST_CPPFLAGS) \
- -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_srcdir)/plugingui
-
+ -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_srcdir)/plugingui \ No newline at end of file
diff --git a/vst/Makefile.mingw32.in b/vst/Makefile.mingw32.in
index 54c42e0..1a6a3e7 100644
--- a/vst/Makefile.mingw32.in
+++ b/vst/Makefile.mingw32.in
@@ -38,7 +38,6 @@ DG_SRC = \
DG_CFLAGS = -I.. -I../include -I../src -DSSE -msse -msse2 -DDISABLE_HUGIN
GUI_SRC = \
- @top_srcdir@/plugingui/nativewindow_x11.cc \
@top_srcdir@/plugingui/nativewindow_win32.cc \
@top_srcdir@/plugingui/plugingui.cc \
@top_srcdir@/plugingui/pluginconfig.cc \
@@ -53,6 +52,7 @@ GUI_SRC = \
@top_srcdir@/plugingui/pixelbuffer.cc \
@top_srcdir@/plugingui/lineedit.cc \
@top_srcdir@/plugingui/led.cc \
+ @top_srcdir@/plugingui/layout.cc \
@top_srcdir@/plugingui/checkbox.cc \
@top_srcdir@/plugingui/slider.cc \
@top_srcdir@/plugingui/scrollbar.cc \
diff --git a/vst/drumgizmo_vst.cc b/vst/drumgizmo_vst.cc
index 6aec4f2..d9cb975 100644
--- a/vst/drumgizmo_vst.cc
+++ b/vst/drumgizmo_vst.cc
@@ -49,7 +49,7 @@ bool DGEditor::open(void* ptr)
DEBUG(dgeditor, "open GUI (new PluginGUI)\n");
if(plugingui) delete plugingui;
- plugingui = new PluginGUI();
+ plugingui = new GUI::PluginGUI();
// plugingui->setChangeMidimapCallback(midimapHandler, dgeff);
// plugingui->show();
diff --git a/vst/drumgizmo_vst.h b/vst/drumgizmo_vst.h
index 4497c48..b15122c 100644
--- a/vst/drumgizmo_vst.h
+++ b/vst/drumgizmo_vst.h
@@ -112,7 +112,7 @@ public:
private:
DrumGizmoVst* dgeff;
- PluginGUI *plugingui;
+ GUI::PluginGUI *plugingui;
DrumGizmo *drumgizmo;
};