From 39c599d37254ecb090afdc99d4b27e688ce128ec Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 12 Mar 2017 16:10:32 +0100 Subject: [PATCH] wscript: on darwin, also look for header in 64bit folder --- wscript | 1 + 1 file changed, 1 insertion(+) 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'] -- 2.11.0