LoginSignup
2
2

More than 5 years have passed since last update.

CocoaPodsの.podspecファイルでOther Swift Flagsを指定する方法

Posted at

動作を確認した環境

環境 情報
CocoaPods 0.39.0
Date 2016/4/6

使い方

例えば、Debugビルドの時だけ『-D DEBUG』を指定する場合はこんな感じ。.podspecファイルの適当なところに書きます。

    s.pod_target_xcconfig = {
        'OTHER_SWIFT_FLAGS[config=Debug]' => '-D DEBUG'
    }

そもそも、Xcodeが標準で『-D DEBUG』ぐらい設定してくれても良いと思うんですけどね・・・

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2