Is possible make a .xcodeproj file and how?
is possible make a .xcodeproj file and how? I'd like to make a Mac so开发者_JS百科ftware which have to build a .xcodeproj file.
An xcode project file is just a keyed archive of internal xcode model objects. It'd be a waste of time trying to generate one outside of xcode.
If you want to build a compile script your best option is to generate Makefiles. Those can be imported in xcode if you need this to work with the IDE as well.
Install Xcode from developer.apple.com. Open Xcode and select "New Project..." from the File menu.
精彩评论