using the nlohmann_json lib from now on

This commit is contained in:
2025-10-24 23:06:24 -05:00
parent bbed6bb653
commit 0f62d80ffb
4 changed files with 7 additions and 8 deletions

View File

@@ -9,20 +9,20 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_subdirectory(external/fmt)
add_subdirectory(external/spdlog)
add_subdirectory(external/tomlplusplus)
add_subdirectory(external/bitsery)
add_subdirectory(external/duckdb)
add_subdirectory(external/json)
# Executables
add_executable(${PROJECT_NAME}-client src/main-tracker.cpp)
add_executable(${PROJECT_NAME}-daemon src/main-daemon.cpp)
# Common targets
set(COMMON_LIBS fmt spdlog tomlplusplus bitsery duckdb_static)
set(COMMON_LIBS fmt spdlog tomlplusplus duckdb_static nlohmann_json)
set(COMMON_INCLUDES
external/fmt/include
external/spdlog/include
external/tomlplusplus/include
external/bitsery/include/bitsery
external/duckdb/src/include
external/json/include/nlohmann
)
# Apply common settings