Hello everyone, is possible build an iPhone project from Mac os x terminal and without an xcode project? I'd like to make an iPhone static library without create and using xcode project and only with the terminal. Thanks
views:
42answers:
1
+1
A:
For subsequent builds, after the first one, you can look at the command lines that Xcode executes in its Build window (there's a little command disclosure tab) and copy all those command lines into a script or suitable makefile template.
hotpaw2
2010-09-24 19:01:42
For an app, you'll also need to generate Entitlements.xcent (for code-signing) and Info.plist, pick the correct provisioning profile, and do code-signing. A static library should be pretty easy though.
tc.
2010-09-25 00:46:51