diff options
author | David Robillard <d@drobilla.net> | 2010-11-26 21:37:10 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-11-26 21:37:10 +0000 |
commit | d2f94aa4fd3472ff86fea5abe7a58d15a90d3264 (patch) | |
tree | f5e0d4f5016cc1440712a3b5506231edcaaa7920 /wscript | |
parent | 0945fbb32ff6abd4a9276707eb1550d7a4ead542 (diff) | |
download | ingen-d2f94aa4fd3472ff86fea5abe7a58d15a90d3264.tar.gz ingen-d2f94aa4fd3472ff86fea5abe7a58d15a90d3264.tar.bz2 ingen-d2f94aa4fd3472ff86fea5abe7a58d15a90d3264.zip |
Update for latest LV2 #include style.
Enable building against system installed LV2 extensions.
Fix building slv2 and ingen independently.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2675 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -32,6 +32,7 @@ def set_options(opt): help="Use liblo bundle support (experimental, requires patched liblo)") def configure(conf): + conf.line_just = max(conf.line_just, 67) autowaf.configure(conf) autowaf.display_header('Ingen Configuration') conf.check_tool('compiler_cxx') @@ -71,6 +72,15 @@ def configure(conf): header_name='stdlib.h', define_name='HAVE_POSIX_MEMALIGN') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/lv2core/lv2.h') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/atom/atom.h') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/contexts/contexts.h') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/event/event-helpers.h') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/event/event.h') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/resize-port/resize-port.h') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/uri-map/uri-map.h') + autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/uri-unmap/uri-unmap.h') + build_gui = conf.env['HAVE_GLADEMM'] == 1 and conf.env['HAVE_FLOWCANVAS'] == 1 conf.define('INGEN_VERSION', INGEN_VERSION) |