0
1

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 3 years have passed since last update.

[xcode]外部ライブラリの利用[備忘録]

Posted at

#手順

  1. githubからライブラリのソースコードをclone。
  2. cmakeでxcodeプロジェクトの生成。
  3. xcode上でビルドして、staticライブラリ(.a)を生成。
  4. 使用するプロジェクト内に、staticライブラリとヘッダーファイルをコピーする。
  5. staticライブラリのリンクを設定する。General > Linked Frameworks and Library
  6. ライブラリのサーチパスを設定する。 Build Settings > Search Paths > Library Search Paths
  7. ヘッダーのサーチパスを設定する。 Build Settings > Search Paths > Header Search Paths
  8. ソースコードで使用する。 #include "headers/xxx.h"

#参考記事
https://kamino.hatenablog.com/entry/cmake_tutorial1
http://xxxxxfo.hateblo.jp/entry/2019/03/09/051213
http://aryzae.hatenablog.com/category/Xcode?page=1464969013

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?