From 4107d0a06960b6c8034b3c3cdc89160e4dbba522 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 27 Sep 2011 19:57:14 +0000 Subject: Load tools before autowaf.configure so e.g. --debug works correctly. git-svn-id: http://svn.drobilla.net/lad/trunk/machina@3497 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 92f4551..0215300 100644 --- a/wscript +++ b/wscript @@ -15,14 +15,14 @@ top = '.' out = 'build' def options(opt): - autowaf.set_options(opt) opt.load('compiler_cxx') + autowaf.set_options(opt) def configure(conf): + conf.load('compiler_cxx') conf.line_just = 37 autowaf.configure(conf) autowaf.display_header('Machina Configuration') - conf.load('compiler_cxx') autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0', mandatory=True) autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', -- cgit v1.2.1