From: Paul Brossier Date: Sat, 7 Dec 2013 19:03:25 +0000 (-0500) Subject: wscript: start updating wscript X-Git-Tag: 0.3~23 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=71a47937911dcab83245305a8595fff128396c8b;p=pd-aubio.git wscript: start updating wscript --- 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')