From: Paul Brossier Date: Sun, 12 Mar 2017 15:10:32 +0000 (+0100) Subject: wscript: on darwin, also look for header in 64bit folder X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=39c599d37254ecb090afdc99d4b27e688ce128ec;p=pd-aubio.git wscript: on darwin, also look for header in 64bit folder --- diff --git a/wscript b/wscript index eaed00d..c3ee7e7 100644 --- a/wscript +++ b/wscript @@ -26,6 +26,7 @@ def configure(ctx): # add default include path for both pd and pd-extended # set CFLAGS for custom location ctx.env.CFLAGS += ['-I/Applications/Pd-0.47-1.app/Contents/Resources/src'] + ctx.env.CFLAGS += ['-I/Applications/Pd-0.47-1-64bit.app/Contents/Resources/src'] ctx.env.CFLAGS += ['-I/Applications/Pd-extended.app/Contents/Resources/include'] ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64'] ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']