I believe that we are really dealing with a static library here, so I believe that you should specify: static instead of: Xcode as the second option.
Using the following code in your Rakefile, the application compiles:
app.libs << '/usr/lib/libz.1.1.3.dylib' app.frameworks += [ 'AudioToolbox', 'CFNetwork', 'SystemConfiguration', 'MobileCoreServices', 'Security', 'QuartzCore'] app.vendor_project('vendor/Parse.framework', :static, :products => ['Parse'], :headers_dir => 'Heiders')
However, I get the following error when running the Parse setApplicationId method:
(main)>> Objective-C stub for message `setApplicationId:clientKey:' type ` v@ :@@' not precompiled. Make sure you properly link with the framework or library that defines this message.
richard
source share