Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
環境変数 BAR の値を引用符なしで "foo" に定義したいとします。.xcconfig ファイルに次の行がある場合
BAR = foo
それは「foo」に設定されます。行がある場合も同様です
私がやりたいことをする方法はありますか?
私はそれを行う方法を見つけました:
EMPTY_STRING = BAR = $(EMPTY_STRING) foo // the empty string protects leading space.