diff options
author | David Robillard <d@drobilla.net> | 2017-12-26 14:41:02 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-29 15:26:28 -0500 |
commit | b10c8fd894a2119a3d4ef49d2f8f913736c2365f (patch) | |
tree | ca136c91f81ed05f13c8e74fc31cbd7d6e1b4091 /wscript | |
parent | 89cd7edc78c8f359409bff885bcfa61724b7d6eb (diff) | |
download | matriseq.lv2-b10c8fd894a2119a3d4ef49d2f8f913736c2365f.tar.gz matriseq.lv2-b10c8fd894a2119a3d4ef49d2f8f913736c2365f.tar.bz2 matriseq.lv2-b10c8fd894a2119a3d4ef49d2f8f913736c2365f.zip |
Upgrade to waf 2.0.3
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -16,10 +16,10 @@ def options(opt): autowaf.set_options(opt) def configure(conf): - conf.load('compiler_c') - conf.load('lv2') - autowaf.configure(conf) autowaf.display_header('Matriseq Configuration') + conf.load('compiler_c', cache=True) + conf.load('lv2', cache=True) + conf.load('autowaf', cache=True) autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0', uselib_store='LV2') @@ -30,6 +30,7 @@ def configure(conf): conf.env.pluginlib_PATTERN = pat conf.env.pluginlib_EXT = pat[pat.rfind('.'):] + autowaf.display_summary(conf) autowaf.display_msg(conf, "LV2 bundle directory", conf.env.LV2DIR) print('') |