arachide
arachide

Reputation: 8076

compile my source code using iphone sdk without xcode ide

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

Answers (2)

jr.
jr.

Reputation: 4705

You can make use of the xcodebuild tool.

man xcodebuild for more information.

xcodebuild -configuration "$CONFIGURATION" -sdk $SDK

Upvotes: 2

Tejaswi Yerukalapudi
Tejaswi Yerukalapudi

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

Related Questions