summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-29 16:04:26 -0500
committerDavid Robillard <d@drobilla.net>2017-12-29 16:04:26 -0500
commit1bd70b7c31acfd98ddba7874c44c8ff339994a34 (patch)
tree2700cff2bdab326d7c7c2ca0b1cd82c14d6f064c /wscript
parenta27a2b95ed11b48d0dba74f431d684c52edfdc4d (diff)
downloaddrobillad-1bd70b7c31acfd98ddba7874c44c8ff339994a34.tar.gz
drobillad-1bd70b7c31acfd98ddba7874c44c8ff339994a34.tar.bz2
drobillad-1bd70b7c31acfd98ddba7874c44c8ff339994a34.zip
Upgrade to waf 2.0.3
Diffstat (limited to 'wscript')
-rw-r--r--wscript10
1 files changed, 6 insertions, 4 deletions
diff --git a/wscript b/wscript
index 21ee6be..1ae733b 100644
--- a/wscript
+++ b/wscript
@@ -104,10 +104,12 @@ def sub_config_and_use(conf, name, has_objects = True, pkgname = ''):
autowaf.set_local_lib(conf, pkgname, has_objects)
def configure(conf):
- conf.load('compiler_c')
- conf.load('compiler_cxx')
- conf.load('lv2')
- autowaf.configure(conf)
+ autowaf.display_header('Global Configuration')
+ autowaf.set_line_just(conf, 45)
+ conf.load('compiler_c', cache=True)
+ conf.load('compiler_cxx', cache=True)
+ conf.load('lv2', cache=True)
+ conf.load('autowaf', cache=True)
autowaf.set_recursive()
autowaf.check_pkg(conf, 'lv2', atleast_version='1.14.0', uselib_store='LV2')