Manually Creating Xcode Projects

I know how to create an existing Xcode project using xcodebuild, but I also need to generate Xcode projects, possibly from a Python / Shell script. Is there any document somewhere describing the process?

+3
source share
2 answers

One possible way is to create a project with Xcode and recreate the file hierarchy using a script.

0
source

From personal experience creating xcode projects manually, pain; I have never seen a clear format defined anywhere, except that Apple continues to change / add material to each new version of Xcode.

, - cmake/qmake scons xcode . , cmake : script makeake makefile, cmake -G xcode, xcode. , python, , , scons .

+3

Source: https://habr.com/ru/post/1721853/


All Articles