diff options
author | David Robillard <d@drobilla.net> | 2013-02-03 19:57:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-03 19:57:38 +0000 |
commit | 6dc37f9db5c5c8c11a95f9498ce674202d018367 (patch) | |
tree | 206961dcbe8b788774d942efa50b7cfeb170185b /wscript | |
parent | eef993daeaedfdcde1d580d860843f06dc8b8892 (diff) | |
download | ingen-6dc37f9db5c5c8c11a95f9498ce674202d018367.tar.gz ingen-6dc37f9db5c5c8c11a95f9498ce674202d018367.tar.bz2 ingen-6dc37f9db5c5c8c11a95f9498ce674202d018367.zip |
Check for required boost headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5041 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -39,6 +39,11 @@ def configure(conf): conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) + autowaf.check_header(conf, 'cxx', 'boost/format.hpp') + autowaf.check_header(conf, 'cxx', 'boost/intrusive/list.hpp') + autowaf.check_header(conf, 'cxx', 'boost/optional.hpp') + autowaf.check_header(conf, 'cxx', 'boost/utility.hpp') + autowaf.display_header('Ingen Configuration') conf.check_python_version((2,4,0), mandatory=False) autowaf.check_pkg(conf, 'lv2', uselib_store='LV2', |