Skip to content

Commit

Permalink
update cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrady-tt committed Mar 5, 2025
1 parent de4dbfc commit f967f32
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -59,33 +59,22 @@ if(googletest_ADDED)
target_compile_options(gtest PRIVATE -Wno-implicit-int-float-conversion)
endif()

############################################################################################################################
# boost-ext reflect : https://github.com/boost-ext/reflect
############################################################################################################################

CPMAddPackage(NAME reflect GITHUB_REPOSITORY boost-ext/reflect GIT_TAG v1.1.1)
if(reflect_ADDED)
add_library(reflect INTERFACE)
add_library(Reflect::Reflect ALIAS reflect)
target_include_directories(reflect SYSTEM INTERFACE ${reflect_SOURCE_DIR})
endif()

############################################################################################################################
# magic_enum : https://github.com/Neargye/magic_enum
############################################################################################################################

CPMAddPackage(NAME magic_enum GITHUB_REPOSITORY Neargye/magic_enum GIT_TAG v0.9.6)

############################################################################################################################
# fmt : https://github.com/fmtlib/fmt
############################################################################################################################

CPMAddPackage(NAME fmt GITHUB_REPOSITORY fmtlib/fmt GIT_TAG 11.0.1)

############################################################################################################################
# nlohmann/json : https://github.com/nlohmann/json
############################################################################################################################
CPMAddPackage(NAME json GITHUB_REPOSITORY nlohmann/json GIT_TAG v3.9.1 OPTIONS "JSON_BuildTests OFF")

CPMAddPackage(NAME json GITHUB_REPOSITORY nlohmann/json GIT_TAG v3.11.3 OPTIONS "JSON_BuildTests OFF")

############################################################################################################################
# simdjson/simdjson : https://github.com/simdjson/simdjson
############################################################################################################################
CPMAddPackage(NAME simdjson VERSION 3.10.0 GITHUB_REPOSITORY simdjson/simdjson OPTIONS "SIMDJSON_BUILD_STATIC_LIB ON")

0 comments on commit f967f32

Please sign in to comment.