Reputation: 407
is possible make a .xcodeproj file and how? I'd like to make a Mac software which have to build a .xcodeproj file.
Upvotes: 0
Views: 2597
Reputation: 1701
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.
Upvotes: 1
Reputation: 18333
Install Xcode from developer.apple.com. Open Xcode and select "New Project..." from the File menu.
Upvotes: 1