summaryrefslogtreecommitdiff
path: root/libs/evoral/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-14 01:00:15 +0000
committerDavid Robillard <d@drobilla.net>2009-02-14 01:00:15 +0000
commitf609d97ccd7f773ddbfaf62dc45cef5e5fbb3aa8 (patch)
tree033133abfcf1c02b0e0a3bc3529a6771ae121154 /libs/evoral/wscript
parent92243228bef1edb3e53685ba018bee7aa9b318fd (diff)
Mandatory check for boost headers.
git-svn-id: svn://localhost/ardour2/branches/3.0@4546 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/wscript')
-rw-r--r--libs/evoral/wscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/evoral/wscript b/libs/evoral/wscript
index 8c0202ee94..baa773cc8b 100644
--- a/libs/evoral/wscript
+++ b/libs/evoral/wscript
@@ -31,6 +31,10 @@ def configure(conf):
autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.14.0', mandatory=True)
autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False)
+ # Boost headers
+ autowaf.check_header(conf, 'boost/shared_ptr.hpp', mandatory=True)
+ autowaf.check_header(conf, 'boost/weak_ptr.hpp', mandatory=True)
+
def build(bld):
# Headers
#bld.install_files('${INCLUDEDIR}/evoral', 'evoral/*.h')