Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuzzbawls committed Oct 1, 2024
1 parent 4fffec0 commit 0cd2d88
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,16 @@ find_package(GMP REQUIRED)
find_package(ZMQ)
find_package(Miniupnp)
find_package(NAT-PMP)
find_package(Boost COMPONENTS system filesystem chrono thread REQUIRED)
find_package(Sodium REQUIRED)

# Use the now deprecated FindBoost internal for CMake versions 3.30.0 and above
# TODO: re-work this to support the upstream BoostConfig.cmake configuration.
if(CMAKE_VERSION VERSION_LESS "3.30.0")
else()
cmake_policy(SET CMP0167 OLD)
endif()
find_package(Boost COMPONENTS system filesystem chrono thread REQUIRED)

include_directories(${GMP_INCLUDE_DIR})

# run autogen.sh if missing header files from configure on Linux/Mac
Expand Down

0 comments on commit 0cd2d88

Please sign in to comment.