You can create an Xcode project using a python-based build system called waf . You need to download and install waf with the xcode6 extension:
$ curl -o waf-1.9.7.tar.bz2 https://waf.io/waf-1.9.7.tar.bz2 $ tar xjvf waf-1.9.7.tar.bz2 $ cd waf-1.9.7 $ ./waf-light --tools=xcode6
This will create a waf that your project can create. You need to set up a way to create an wscript project inside a file called wscript , which should be in the project folder. The wscript file uses Python syntax. Here is an example of how you can customize your project:
def configure(conf):
There are many settings that you can use to configure it for your project.
Then to actually create the Xcode cd project in your project folder where wscript is and it will run your waf , for example
$ ./waf configure xcode6
mrmclovin
source share