diff options
author | David Robillard <d@drobilla.net> | 2007-07-24 06:48:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-24 06:48:02 +0000 |
commit | 16751f0c2a7348ce9d060d5ba8c1e25098191a5e (patch) | |
tree | 72865c88228a32cb00caaba63eacc8783a6f90b2 /src/gui | |
parent | 60c0e1c8df1c9d598dbfc32cdab4cac1ef01a79d (diff) | |
download | machina-16751f0c2a7348ce9d060d5ba8c1e25098191a5e.tar.gz machina-16751f0c2a7348ce9d060d5ba8c1e25098191a5e.tar.bz2 machina-16751f0c2a7348ce9d060d5ba8c1e25098191a5e.zip |
Removed recursive autohell, except for SLv2.
Always build against local copies, hopefully fixing broken compilation against outdated system versions.
git-svn-id: http://svn.drobilla.net/lad/machina@610 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/Makefile.am | 6 | ||||
-rw-r--r-- | src/gui/main.cpp | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/Makefile.am b/src/gui/Makefile.am index fb74a41..0dc1326 100644 --- a/src/gui/Makefile.am +++ b/src/gui/Makefile.am @@ -1,4 +1,4 @@ -AM_CXXFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\" @LIBGLADEMM_CFLAGS@ @GNOMECANVASMM_CFLAGS@ @JACK_CFLAGS@ @FLOWCANVAS_CFLAGS@ @RAUL_CFLAGS@ -I$(top_srcdir)/src/engine +AM_CXXFLAGS = -I$(top_srcdir)/flowcanvas -I$(top_srcdir)/raul -I$(top_srcdir)/machina/src/engine -DPKGDATADIR=\"$(pkgdatadir)\" @LIBGLADEMM_CFLAGS@ @GNOMECANVASMM_CFLAGS@ @JACK_CFLAGS@ EXTRA_DIST = machina.gladep @@ -22,9 +22,9 @@ machina_gui_SOURCES = \ NodePropertiesWindow.hpp \ NodePropertiesWindow.cpp -if WITH_GUI +if WITH_MACHINA_GUI -machina_gui_LDADD = @FLOWCANVAS_LIBS@ @LIBGLADEMM_LIBS@ @GNOMECANVASMM_LIBS@ @JACK_LIBS@ @RAUL_CFLAGS@ ../engine/libmachina.la +machina_gui_LDADD = ../engine/libmachina.la @RAUL_LIBS@ @FLOWCANVAS_LIBS@ @LIBGLADEMM_LIBS@ @GNOMECANVASMM_LIBS@ @JACK_LIBS@ bin_PROGRAMS = machina_gui diff --git a/src/gui/main.cpp b/src/gui/main.cpp index 791aa2d..104e0a6 100644 --- a/src/gui/main.cpp +++ b/src/gui/main.cpp @@ -20,7 +20,8 @@ #include <string> #include <libgnomecanvasmm.h> #include <raul/RDFWorld.h> -#include "../config.h" +#include "../config/config.h" +#include "machina/Machine.hpp" #include "machina/Loader.hpp" #include "machina/SMFDriver.hpp" #include "MachinaGUI.hpp" |