Hello everyone, is possible make a .xcodeproj file and how? I'd like to make a Mac software which have to build a .xcodeproj file.
+1
A:
Install Xcode from developer.apple.com. Open Xcode and select "New Project..." from the File menu.
Peter DeWeese
2010-09-12 19:52:53
+1
A:
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.
jarjar
2010-09-13 00:19:41
Thanks guy! You give me an idea for my project :D
Alleria
2010-09-14 17:52:16