In my code, I want to make use of boost::hash<pair<int, int>>
, for which I need to:
#include <boost/functional/hash.hpp>
I use the cmake
to build my project. What package should I request with find_package
in CMakeLists.txt
? Right now I have: find_package(Boost COMPONENTS program_options regex REQUIRED)
. I don't have any errors, but I suspect the reason for that is that I have all the boost libraries installed.