Using Boost with Xcode4

我怕爱的太早我们不能终老 提交于 2019-12-03 04:32:55

问题


has anyone setup a C++ Xcode4 project to use Boost? what settings do I need to set in Xcode for a simple C++ console application?

Thanks


回答1:


Managed it with this:

and this:




回答2:


I would just like to add on to the previous post:

After running

$ sudo port install boost (this can be done once you have macports installed).

libboost_system.dylib and libboost_filesystem.dylib could be found in /opt/local/lib/

boost_1_46_1.tar.bz2 will be located in /opt/local/var/macports/distfiles/boost/ Unarchive it, then copy and paste the folder named "Boost" to /usr/local/include/




回答3:


  1. Download the boost libraries for unix from : http://www.boost.org/
  2. Unzip it : Let's say now you have boost in "($USER_NAME)/boost_X_YY_0"
  3. Open your console Application project
  4. Click on top left node in the project directory pane (left hand side). This should be your project name
  5. Build Settings -> Search Paths -> Header Search Paths ->Add the "($USER_NAME)/boost_X_YY_0" path
  6. #include "boost/any.hpp" will work


来源:https://stackoverflow.com/questions/5288822/using-boost-with-xcode4

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!