我刚刚从 macports 使用sudo port install boost
.
一切正常。现在我有一个项目,我正在尝试使用 makefile 构建。一切都很好,直到涉及到需要 boost 库的文件。
它说:
src/graph.h:20:42: error: boost/graph/adjacency_list.hpp: No such file or directory
该文件实际上位于两个地方:
/opt/local/include/boost/graph/adjacency_list.hpp
和
/opt/local/var/macports/software/boost/1.42.0_0/opt/local/include/boost/graph /adjacency_list.hpp
在寻找 boost/graph/adjacency_list.hpp 的文件 src/graph.h 中,包含语句在这里:
#include<boost/graph/adjacency_list.hpp>
我该如何进行这项工作?