因爲boost庫在項目開發過程當中使用的很是的頻繁,且被成爲「準標準庫」,業界對其承認度較高,所以爲了防止每次建立項目時都更改一次project配置,我決定將boost頭文件和編譯好的庫統一放在xcode的默認搜索路徑下。那麼如何查看xcode的默認搜索路徑呢?xcode
#include<libxml/parser.h>
For testing, I ran:app
echo '#include <libxml/parser.h>'| xcrun clang++ -xc -v -
which gives meide
#include"..." search starts here:#include<...>
spa
search starts here:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/5.0/include/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks(framework directory)End of search list.<stdin>:1:10: fatal error:'libxml/parser.h' file not found#include<libxml/parser.h>
code
經過上面的命令可知道xcode的默認搜索路徑。而後將boost的頭文件和編譯好的庫放到下面便可。這樣boost庫就像stl標準庫同樣被使用了。
orm