From 71a47937911dcab83245305a8595fff128396c8b Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 7 Dec 2013 14:03:25 -0500 Subject: [PATCH] wscript: start updating wscript --- wscript | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/wscript b/wscript index 64a9ee5..dad8016 100644 --- a/wscript +++ b/wscript @@ -1,15 +1,16 @@ #! /usr/bin/python + # build puredata external -srcdir = '.' -blddir = 'build' +top = '.' +out = 'build' VERSION = '0.2' -def set_options(opt): - opt.tool_options('compiler_cc') +def options(ctx): + ctx.load('compiler_c') def configure(conf): - conf.check_tool('compiler_cc') + conf.load('compiler_c') # required dependancies conf.check_cfg(package = 'aubio', atleast_version = '0.4.0', args = '--cflags --libs') -- 2.11.0