4

I can't handle the Xcode IDE for this particular project anymore!

I have a simple C project I want to build into a static library for iOS, and I don't want to use the Xcode IDE.

I'm familiar with xcodebuild but my understanding is that I'd first need to create an Xcode project to use it - and simply being able to build the project on the command line isn't my goal.

I want a standard make-style build process for this project but can't seem to find any information about doing such a thing. It seems like I can't. Is that true?

4

1 回答 1

5

You absolutely CAN use a makefile project. It's just a matter of using the correct paths, etc...

Here's something to get you started:

iOS static lib cross-compile script

于 2013-03-30T22:08:15.917 回答