问题
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:
- Download the boost libraries for unix from : http://www.boost.org/
- Unzip it : Let's say now you have boost in "($USER_NAME)/boost_X_YY_0"
- Open your console Application project
- Click on top left node in the project directory pane (left hand side). This should be your project name
- Build Settings -> Search Paths -> Header Search Paths ->Add the "($USER_NAME)/boost_X_YY_0" path
- #include "boost/any.hpp" will work
来源:https://stackoverflow.com/questions/5288822/using-boost-with-xcode4