Rename insert() to set() to avoid confusion with std::map::insert()
[junction.git] / cmake / modules / FindLibCuckoo.cmake
1 find_path(LIBCUCKOO_ROOT include/libcuckoo/cuckoohash_map.hh)
2
3 if(LIBCUCKOO_ROOT)
4     set(LIBCUCKOO_FOUND TRUE)
5     set(LIBCUCKOO_INCLUDE_DIRS "${LIBCUCKOO_ROOT}/include")
6 else()
7     message("Can't find libcuckoo!")
8     if(LibCuckoo_FIND_REQUIRED)
9         message(FATAL_ERROR "Missing required package libcuckoo")
10     endif()
11 endif()