Skip to content

Instantly share code, notes, and snippets.

@hotwatermorning
Created March 25, 2020 17:08
Show Gist options
  • Save hotwatermorning/0dfce43eeb35e7c49640c2421731bfc0 to your computer and use it in GitHub Desktop.
Save hotwatermorning/0dfce43eeb35e7c49640c2421731bfc0 to your computer and use it in GitHub Desktop.
Xcode のプロジェクトで環境変数を設定してビルドする方法
`.xcodeproj` に環境変数をそのまま記述しても適用されない。
コマンドラインから `xcodebuild -project <Project名>.xcodeproj -configuration <Config名> <設定名>=<環境変数名>` のように指定する。
例) `xcodebuild -project MyProject.xcodeproj -configuration Release BOOST_ROOT_DIR=$MY_BOOST_ROOT_DIR`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment