Fabrizio
Fabrizio

Reputation: 407

Is possible make a .xcodeproj file and how?

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

Answers (2)

jarjar
jarjar

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

Peter DeWeese
Peter DeWeese

Reputation: 18333

Install Xcode from developer.apple.com. Open Xcode and select "New Project..." from the File menu.

Upvotes: 1

Related Questions