13
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SwiftプロジェクトでCommonCryptoをインクルードする[Xcode10では不要]

Last updated at Posted at 2017-08-16

Xcode10以降

この対応がなくてもCommonCryptoが使えるようになりました。

Xcode9以前

1.対象のターゲットにこのシェルを追加

mkdir -p "${BUILT_PRODUCTS_DIR}/CommonCryptoModuleMap"
cat <<EOF > "${BUILT_PRODUCTS_DIR}/CommonCryptoModuleMap/module.modulemap"
module CommonCrypto [system] {
    header "${SDKROOT}/usr/include/CommonCrypto/CommonCrypto.h"
    export *
}

2.Import Pathsの設定にパスを追加

$(BUILT_PRODUCTS_DIR)/CommonCryptoModuleMap/module.modulemap

3.Importする

import CommonCrypto

シンプルにこれで終了。
ブログとかスタックオーバーフローを見てたらヘッダーファイルをコピーして、プロジェクトに含めるような回答が多かったけど
シェルでランタイムに応じたヘッダーをビルド時のtmpディレクトリにコピって参照する方が管理しなくていいので楽だとおもったのでメモ。

13
6
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
13
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?