views:

57

answers:

2

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
+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
Thanks guy! You give me an idea for my project :D
Alleria