summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-12 01:11:11 +0100
committerDavid Robillard <d@drobilla.net>2020-11-12 01:47:40 +0100
commitbf9190ef628c1aa04791af1bd7cd4905e9c24658 (patch)
tree56114c93a8ec689cd15497059958dad03a1ee2ce
parent496e70e420811c7d744a8bcc44a2ac1b51b676b5 (diff)
downloadraul-bf9190ef628c1aa04791af1bd7cd4905e9c24658.tar.gz
raul-bf9190ef628c1aa04791af1bd7cd4905e9c24658.tar.bz2
raul-bf9190ef628c1aa04791af1bd7cd4905e9c24658.zip
Move includes to a conventional include directory
-rw-r--r--include/raul/Array.hpp (renamed from raul/Array.hpp)0
-rw-r--r--include/raul/Deletable.hpp (renamed from raul/Deletable.hpp)0
-rw-r--r--include/raul/DoubleBuffer.hpp (renamed from raul/DoubleBuffer.hpp)0
-rw-r--r--include/raul/Exception.hpp (renamed from raul/Exception.hpp)0
-rw-r--r--include/raul/Maid.hpp (renamed from raul/Maid.hpp)0
-rw-r--r--include/raul/Noncopyable.hpp (renamed from raul/Noncopyable.hpp)0
-rw-r--r--include/raul/Path.hpp (renamed from raul/Path.hpp)0
-rw-r--r--include/raul/Process.hpp (renamed from raul/Process.hpp)0
-rw-r--r--include/raul/RingBuffer.hpp (renamed from raul/RingBuffer.hpp)0
-rw-r--r--include/raul/Semaphore.hpp (renamed from raul/Semaphore.hpp)0
-rw-r--r--include/raul/Socket.hpp (renamed from raul/Socket.hpp)0
-rw-r--r--include/raul/Symbol.hpp (renamed from raul/Symbol.hpp)0
-rw-r--r--include/raul/TimeSlice.hpp (renamed from raul/TimeSlice.hpp)0
-rw-r--r--include/raul/TimeStamp.hpp (renamed from raul/TimeStamp.hpp)0
m---------waflib0
-rw-r--r--wscript7
16 files changed, 5 insertions, 2 deletions
diff --git a/raul/Array.hpp b/include/raul/Array.hpp
index ee50470..ee50470 100644
--- a/raul/Array.hpp
+++ b/include/raul/Array.hpp
diff --git a/raul/Deletable.hpp b/include/raul/Deletable.hpp
index 9b80d54..9b80d54 100644
--- a/raul/Deletable.hpp
+++ b/include/raul/Deletable.hpp
diff --git a/raul/DoubleBuffer.hpp b/include/raul/DoubleBuffer.hpp
index 73b5565..73b5565 100644
--- a/raul/DoubleBuffer.hpp
+++ b/include/raul/DoubleBuffer.hpp
diff --git a/raul/Exception.hpp b/include/raul/Exception.hpp
index da4a0e0..da4a0e0 100644
--- a/raul/Exception.hpp
+++ b/include/raul/Exception.hpp
diff --git a/raul/Maid.hpp b/include/raul/Maid.hpp
index 1479f71..1479f71 100644
--- a/raul/Maid.hpp
+++ b/include/raul/Maid.hpp
diff --git a/raul/Noncopyable.hpp b/include/raul/Noncopyable.hpp
index 876cee8..876cee8 100644
--- a/raul/Noncopyable.hpp
+++ b/include/raul/Noncopyable.hpp
diff --git a/raul/Path.hpp b/include/raul/Path.hpp
index 6237ddd..6237ddd 100644
--- a/raul/Path.hpp
+++ b/include/raul/Path.hpp
diff --git a/raul/Process.hpp b/include/raul/Process.hpp
index 717a900..717a900 100644
--- a/raul/Process.hpp
+++ b/include/raul/Process.hpp
diff --git a/raul/RingBuffer.hpp b/include/raul/RingBuffer.hpp
index a7bbfb7..a7bbfb7 100644
--- a/raul/RingBuffer.hpp
+++ b/include/raul/RingBuffer.hpp
diff --git a/raul/Semaphore.hpp b/include/raul/Semaphore.hpp
index ee2325f..ee2325f 100644
--- a/raul/Semaphore.hpp
+++ b/include/raul/Semaphore.hpp
diff --git a/raul/Socket.hpp b/include/raul/Socket.hpp
index 579a5cd..579a5cd 100644
--- a/raul/Socket.hpp
+++ b/include/raul/Socket.hpp
diff --git a/raul/Symbol.hpp b/include/raul/Symbol.hpp
index 70062be..70062be 100644
--- a/raul/Symbol.hpp
+++ b/include/raul/Symbol.hpp
diff --git a/raul/TimeSlice.hpp b/include/raul/TimeSlice.hpp
index 7758602..7758602 100644
--- a/raul/TimeSlice.hpp
+++ b/include/raul/TimeSlice.hpp
diff --git a/raul/TimeStamp.hpp b/include/raul/TimeStamp.hpp
index d8d4939..d8d4939 100644
--- a/raul/TimeStamp.hpp
+++ b/include/raul/TimeStamp.hpp
diff --git a/waflib b/waflib
-Subproject 116a28fa5f92e58a46dc878751019ba74a61e54
+Subproject d19992202543ebb810609c074f754b5ec48c0fd
diff --git a/wscript b/wscript
index 7662719..ebddb46 100644
--- a/wscript
+++ b/wscript
@@ -63,7 +63,10 @@ def configure(conf):
conf.check_cxx(header_name='memory')
conf.check_cxx(header_name='atomic')
- autowaf.set_lib_env(conf, 'raul', RAUL_VERSION, has_objects=False)
+ autowaf.set_lib_env(conf, 'raul', RAUL_VERSION,
+ has_objects=False,
+ include_path=str(conf.path.find_node('include')))
+
conf.write_config_header('raul_config.h', remove=False)
autowaf.display_summary(conf,
@@ -119,7 +122,7 @@ def build(bld):
for i in tests:
bld(features = 'cxx cxxprogram',
source = os.path.join('test', i + '.cpp'),
- includes = ['.'],
+ includes = ['include'],
lib = test_libs,
use = 'libraul_static',
uselib = 'GLIB GTHREAD',