summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-10-03 01:10:58 +0000
committerDavid Robillard <d@drobilla.net>2008-10-03 01:10:58 +0000
commit41d5634a6ae1f9b0256801ae5cf692f16e2863ba (patch)
tree3265f4f2edeb2741b71b90459756d93dc326a25d /src/gui
parent634cb77a97ebbee02314cfb2c58cd375648ffe01 (diff)
downloadingen-41d5634a6ae1f9b0256801ae5cf692f16e2863ba.tar.gz
ingen-41d5634a6ae1f9b0256801ae5cf692f16e2863ba.tar.bz2
ingen-41d5634a6ae1f9b0256801ae5cf692f16e2863ba.zip
Support building locally against header-only libraries in autowaf.
Remove CONFIG_H_PATH define and replace with just "config.h" (define messed up dependency tracking). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1600 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/App.cpp2
-rw-r--r--src/gui/ConnectWindow.cpp2
-rw-r--r--src/gui/ConnectWindow.hpp2
-rw-r--r--src/gui/Controls.cpp2
-rw-r--r--src/gui/PatchCanvas.cpp2
-rw-r--r--src/gui/PatchCanvas.hpp2
-rw-r--r--src/gui/WindowFactory.cpp2
-rw-r--r--src/gui/gui.hpp2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/App.cpp b/src/gui/App.cpp
index f49d394c..49f25b1e 100644
--- a/src/gui/App.cpp
+++ b/src/gui/App.cpp
@@ -15,7 +15,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include CONFIG_H_PATH
+#include "config.h"
#include "App.hpp"
#include <cassert>
#include <string>
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp
index dca29a2d..58d81aae 100644
--- a/src/gui/ConnectWindow.cpp
+++ b/src/gui/ConnectWindow.cpp
@@ -22,7 +22,7 @@
#include <sys/time.h>
#include <sys/resource.h>
#include <raul/Process.hpp>
-#include CONFIG_H_PATH
+#include "config.h"
#include "interface/EngineInterface.hpp"
#include "module/World.hpp"
#include "engine/tuning.hpp"
diff --git a/src/gui/ConnectWindow.hpp b/src/gui/ConnectWindow.hpp
index fb75d4b2..73cc8c68 100644
--- a/src/gui/ConnectWindow.hpp
+++ b/src/gui/ConnectWindow.hpp
@@ -18,7 +18,7 @@
#ifndef CONNECT_WINDOW_H
#define CONNECT_WINDOW_H
-#include CONFIG_H_PATH
+#include "config.h"
#ifdef HAVE_SLV2
#include <slv2/slv2.h>
diff --git a/src/gui/Controls.cpp b/src/gui/Controls.cpp
index cc5383a8..456439ea 100644
--- a/src/gui/Controls.cpp
+++ b/src/gui/Controls.cpp
@@ -15,7 +15,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include CONFIG_H_PATH
+#include "config.h"
#include <cmath>
#include <iostream>
diff --git a/src/gui/PatchCanvas.cpp b/src/gui/PatchCanvas.cpp
index 4f01a7f7..860b9178 100644
--- a/src/gui/PatchCanvas.cpp
+++ b/src/gui/PatchCanvas.cpp
@@ -15,7 +15,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include CONFIG_H_PATH
+#include "config.h"
#include "module/global.hpp"
#include "module/World.hpp"
diff --git a/src/gui/PatchCanvas.hpp b/src/gui/PatchCanvas.hpp
index fcf68e76..8885cb22 100644
--- a/src/gui/PatchCanvas.hpp
+++ b/src/gui/PatchCanvas.hpp
@@ -18,7 +18,7 @@
#ifndef PATCHCANVAS_H
#define PATCHCANVAS_H
-#include CONFIG_H_PATH
+#include "config.h"
#include <string>
#include <map>
diff --git a/src/gui/WindowFactory.cpp b/src/gui/WindowFactory.cpp
index 125a242b..f7678554 100644
--- a/src/gui/WindowFactory.cpp
+++ b/src/gui/WindowFactory.cpp
@@ -15,7 +15,7 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include CONFIG_H_PATH
+#include "config.h"
#include "WindowFactory.hpp"
#include "App.hpp"
#include "PatchWindow.hpp"
diff --git a/src/gui/gui.hpp b/src/gui/gui.hpp
index a959f17a..3aa86f3b 100644
--- a/src/gui/gui.hpp
+++ b/src/gui/gui.hpp
@@ -18,7 +18,7 @@
#ifndef INGEN_GUI_H
#define INGEN_GUI_H
-#include CONFIG_H_PATH
+#include "config.h"
#include "module/global.hpp"
#include <raul/SharedPtr.hpp>