Created
March 25, 2020 17:08
-
-
Save hotwatermorning/0dfce43eeb35e7c49640c2421731bfc0 to your computer and use it in GitHub Desktop.
Xcode のプロジェクトで環境変数を設定してビルドする方法
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`.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