Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ __pycache__
testbracket
testmvmap
testdf
testgraph
test/TestGraph/testgraph
test/include/wheredev
a.out
26 changes: 16 additions & 10 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,26 @@ endif()

#
# Boost
include(setup_boost)
prepare_fetchcontent_boost()
set(FETCHCONTENT_QUIET FALSE)
set(BOOST_URL
"https://github.com/boostorg/boost/releases/download/boost-1.87.0/boost-1.87.0-cmake.tar.gz"
CACHE STRING "URL to fetch Boost tarball")

#
# Boost
FetchContent_Declare(
Boost
GIT_REPOSITORY https://github.com/boostorg/boost.git
GIT_TAG boost-1.83.0
GIT_SUBMODULES ${BOOST_REQD_SUBMODULES}
GIT_PROGRESS TRUE
CONFIGURE_COMMAND "" # tell CMake it's not a cmake project
Boost
URL ${BOOST_URL}
)
set(BOOST_INCLUDE_LIBRARIES json)
FetchContent_MakeAvailable(Boost)
get_boost_include_dirs()

#
# JSONLogic
FetchContent_Declare(jsonlogic
GIT_REPOSITORY https://github.com/LLNL/jsonlogic.git
GIT_TAG master
)
FetchContent_MakeAvailable(jsonlogic)

### Require out-of-source builds
file(TO_CMAKE_PATH "${PROJECT_BINARY_DIR}/CMakeLists.txt" LOC_PATH)
Expand Down
Loading
Loading