diff options
author | David Robillard <d@drobilla.net> | 2007-07-29 17:20:23 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-29 17:20:23 +0000 |
commit | 61c703a6fe358770c9616b91b26fefc7052a285a (patch) | |
tree | 4dc7282c15ef359d7a0746ab14f03e3a2c8683ea /src | |
parent | f741e4d3dc421793bd69c6ec1c1274da8d7267c1 (diff) | |
download | raul-61c703a6fe358770c9616b91b26fefc7052a285a.tar.gz raul-61c703a6fe358770c9616b91b26fefc7052a285a.tar.bz2 raul-61c703a6fe358770c9616b91b26fefc7052a285a.zip |
Build system fixes, building from top level doesn't recursively configure slv2, but slv2 is still independently packageable/buildable.
Think I've finally figured out how to do recursive autohell without resorting to suicide...
git-svn-id: http://svn.drobilla.net/lad/raul@650 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/JackDriver.cpp | 2 | ||||
-rw-r--r-- | src/Maid.cpp | 4 | ||||
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/Namespaces.cpp | 2 | ||||
-rw-r--r-- | src/Path.cpp | 2 | ||||
-rw-r--r-- | src/RDFModel.cpp | 8 | ||||
-rw-r--r-- | src/RDFQuery.cpp | 4 | ||||
-rw-r--r-- | src/RDFWorld.cpp | 6 | ||||
-rw-r--r-- | src/SMFWriter.cpp | 2 | ||||
-rw-r--r-- | src/Thread.cpp | 2 |
10 files changed, 17 insertions, 17 deletions
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp index 6c60085..b6bbd27 100644 --- a/src/JackDriver.cpp +++ b/src/JackDriver.cpp @@ -22,7 +22,7 @@ #include <jack/jack.h> #include <jack/statistics.h> #include <jack/thread.h> -#include "raul/JackDriver.hpp" +#include <raul/JackDriver.hpp> using std::cerr; using std::endl; using std::string; diff --git a/src/Maid.cpp b/src/Maid.cpp index dda8f27..78ce376 100644 --- a/src/Maid.cpp +++ b/src/Maid.cpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "raul/Maid.hpp" -#include "raul/Deletable.hpp" +#include <raul/Maid.hpp> +#include <raul/Deletable.hpp> namespace Raul { diff --git a/src/Makefile.am b/src/Makefile.am index e848204..9976cef 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -libraul_la_CXXFLAGS = -I$(top_srcdir)/raul @REDLAND_CFLAGS@ @GLIBMM_CFLAGS@ @JACK_CFLAGS@ @LASH_CFLAGS@ +libraul_la_CXXFLAGS = @RAUL_CFLAGS@ @REDLAND_CFLAGS@ @GLIBMM_CFLAGS@ @JACK_CFLAGS@ @LASH_CFLAGS@ libraul_la_LIBADD = @REDLAND_LIBS@ @GLIBMM_LIBS@ @JACK_LIBS@ @LASH_LIBS@ lib_LTLIBRARIES = libraul.la diff --git a/src/Namespaces.cpp b/src/Namespaces.cpp index 8e0a055..3236824 100644 --- a/src/Namespaces.cpp +++ b/src/Namespaces.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "raul/Namespaces.hpp" +#include <raul/Namespaces.hpp> namespace Raul { diff --git a/src/Path.cpp b/src/Path.cpp index 8853e34..96dad69 100644 --- a/src/Path.cpp +++ b/src/Path.cpp @@ -15,7 +15,7 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "raul/Path.hpp" +#include <raul/Path.hpp> namespace Raul { diff --git a/src/RDFModel.cpp b/src/RDFModel.cpp index e68bd01..0e16036 100644 --- a/src/RDFModel.cpp +++ b/src/RDFModel.cpp @@ -16,10 +16,10 @@ */ #include <sstream> -#include "raul/RDFWorld.hpp" -#include "raul/RDFModel.hpp" -#include "raul/RDFNode.hpp" -#include "raul/AtomRedland.hpp" +#include <raul/RDFWorld.hpp> +#include <raul/RDFModel.hpp> +#include <raul/RDFNode.hpp> +#include <raul/AtomRedland.hpp> #define U(x) ((const unsigned char*)(x)) diff --git a/src/RDFQuery.cpp b/src/RDFQuery.cpp index 0e99a22..dc41f56 100644 --- a/src/RDFQuery.cpp +++ b/src/RDFQuery.cpp @@ -18,8 +18,8 @@ #include <iostream> #include <cassert> #include <rasqal.h> -#include "raul/RDFQuery.hpp" -#include "raul/RDFModel.hpp" +#include <raul/RDFQuery.hpp> +#include <raul/RDFModel.hpp> using namespace std; diff --git a/src/RDFWorld.cpp b/src/RDFWorld.cpp index e5bc42a..17805ba 100644 --- a/src/RDFWorld.cpp +++ b/src/RDFWorld.cpp @@ -16,9 +16,9 @@ */ #include <sstream> -#include "raul/RDFWorld.hpp" -#include "raul/RDFNode.hpp" -#include "raul/AtomRedland.hpp" +#include <raul/RDFWorld.hpp> +#include <raul/RDFNode.hpp> +#include <raul/AtomRedland.hpp> #define U(x) ((const unsigned char*)(x)) diff --git a/src/SMFWriter.cpp b/src/SMFWriter.cpp index 0ba9379..1b69e4e 100644 --- a/src/SMFWriter.cpp +++ b/src/SMFWriter.cpp @@ -18,7 +18,7 @@ #include <cstdio> #include <iostream> #include <glibmm/miscutils.h> -#include "raul/SMFWriter.hpp" +#include <raul/SMFWriter.hpp> using namespace std; diff --git a/src/Thread.cpp b/src/Thread.cpp index 059886f..9214811 100644 --- a/src/Thread.cpp +++ b/src/Thread.cpp @@ -16,7 +16,7 @@ */ #include <iostream> -#include "raul/Thread.hpp" +#include <raul/Thread.hpp> using namespace std; |