c++ - Cannot use Boost Library in Xcode IDE project/workspace? -
it seems have done humanly possible incorporate boost xcode c++ workspace, derived project.
here have done:
terminal "sudo port install boost" -> boost header located in /opt/local/include/ , dylibs located in /opt/local/lib.
then "#include "boost/multi_array.hpp" 1 of files, went target settings, set "search header paths" settings /opt/local/include. did not work. xcode redlighted #include "file not found." looked @ couple youtube videos, did not @ all. figured might try "link binary libraries" option , copied libboost math dylibs workspace. still did not work.
i know missing file issue due incorrect path, tried changing location setting through options "relative group or workspace or developer directory", effort no avail. reinstalled xcode, , problem still persists.
any tips or suggestions greatly, , use word truest sincerity, appreciated. :)
replace double-quotes in include line greater- , less-sign.
#include <boost/multi_array.hpp>
Comments
Post a Comment