ダウンロード
brew xcodegen
使用(コマンドを実行してプロジェクトファイルを作成)
xcodegen generate
project.ymlの定義
<>
で囲んだものは書き換えが必要、自分のプロジェクトに応じて書き換えてください
name: <project_name>
configFiles:
Debug: configs/debug.xcconfig
Release: configs/release.xcconfig
options:
deploymentTarget:
iOS: 14.1
packages:
<package_name>:
url: <the_url_of_git>
version: <version>
...
空きのプロジェクトを作成する時:
実はnameのフィールドを入れることで作成出来てしまます
name: <project_name>
この一行だけのymlファイルを作成してxcodegen generate
を実行すれば出来てしまいます!
以上、入門はできました。