From 7ce72b1998e63d5a66b74c99f6394e650204d5e5 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Thu, 5 Jan 2012 14:12:52 -0500 Subject: [PATCH] Adapted build script to changes in hscommon's CocoaProxy and objp. --HG-- branch : objp --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 85b5b4df..17295f12 100644 --- a/build.py +++ b/build.py @@ -165,9 +165,9 @@ def build_mergepot(): def build_cocoa_proxy_module(): print("Building Cocoa Proxy") import objp.p2o - objp.p2o.generate_python_proxy_code('hscommon/cocoa/Cocoa.h', 'build/CocoaProxy.m') + objp.p2o.generate_python_proxy_code('hscommon/cocoa/CocoaProxy.h', 'build/CocoaProxy.m') exts = [ - Extension("CocoaProxy", ['hscommon/cocoa/Cocoa.m', 'build/CocoaProxy.m', 'build/ObjP.m'], + Extension("CocoaProxy", ['hscommon/cocoa/CocoaProxy.m', 'build/CocoaProxy.m', 'build/ObjP.m'], extra_link_args=["-framework", "CoreFoundation", "-framework", "Foundation", "-framework", "AppKit"]), ] setup(