Is it possible to automatically generate Xcode projects? Is it possible to automatically generate Xcode projects? xcode xcode

Is it possible to automatically generate Xcode projects?


Look at CMake. You can generate XCode projects from it automatically. I found a previous StackOverflow question about its usage here. To get it to generate an XCode project, you use it as such:

CMake -G xcode


You can use premake (http://industriousone.com/premake) to generate Xcode projects. It can also generate Visual Studio projects.


For the benefit of anyone who lands on this question, I’ve actually just pushed an Xcode project file generator for SCons up to Bitbucket.