Reputation: 8076
I hope to compile my source codes using iphone sdk, but I do not hope to compile in xcode. Is it possible? And how to do if I hope to get the XCode compiling scripts?
Welcome any comment.
Thanks
interdev
Upvotes: 0
Views: 336
Reputation: 4705
You can make use of the xcodebuild tool.
man xcodebuild for more information.
xcodebuild -configuration "$CONFIGURATION" -sdk $SDK
Upvotes: 2
Reputation: 9157
Was curious myself and searched for it. Looks like gcc
with the -framework Foundation
set will compile the application for you. ( http://www.w3style.co.uk/compiling-objective-c-without-xcode-in-os-x )
I haven't tried this yet though.
Upvotes: 0