markdown 包括Xcode的外部库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 包括Xcode的外部库相关的知识,希望对你有一定的参考价值。

1. Find the installed boost folder under
```/usr/local/boost_version```
2. Open Project Settings in Xcode
3. Goto Project settings
4. Find "header search paths"
5. Paste the related folder path. Do not select "recursive" option
```/usr/local/Cellar/boost/1.67.0_1/include/```
6. Goto "Library Search Paths" and add "lib" folder path of your boost lib. Do not select "recursive" option
```/usr/local/Cellar/boost/1.67.0_1/lib/ ```
7. Now you can include correct boost lib into your project like
```#include <boost/algorithm/string.hpp>```

8. I set boost folder chmod to 777 (optional)

以上是关于markdown 包括Xcode的外部库的主要内容,如果未能解决你的问题,请参考以下文章

markdown 在TVM.Relay中使用外部库

Xcode,包括构建中的外部参考文件夹

在 XCode 4.3 中向项目添加外部库 [重复]

Qt 外部库包括内部自定义库

第三方库如何在 Objective-C 和 Xcode 中工作?

CMake:包括外部库头文件