我刚刚建立了这样的提升:
bjam toolset=msvc-11.0 variant=debug,release threading=multi link=static
我添加了包含路径:C:/boost/boost_1_50_0
库路径:C:/boost/boost_1_50_0/stage/lib
当我尝试包含文件系统标头时
#include <boost\filesystem.hpp>
我得到:错误 1 错误 C1083:无法打开包含文件:'boost/filesystem.hpp':没有这样的文件或目录
然而
#include <filesystem>
编译就好了。
有人可以告诉我我做错了什么吗?谢谢。