rapidjson

This commit is contained in:
cdemeyer-teachx
2025-08-14 18:41:05 +09:00
parent d209216d33
commit 058efbd673
40 changed files with 19069 additions and 0 deletions

View File

@@ -43,6 +43,12 @@ endif()
# Find dependencies
find_package(Threads REQUIRED)
# Configure RapidJSON (header-only library)
set(RAPIDJSON_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/thirdParty/rapidjson")
if(NOT EXISTS "${RAPIDJSON_INCLUDE_DIR}/rapidjson.h")
message(FATAL_ERROR "RapidJSON not found at ${RAPIDJSON_INCLUDE_DIR}. Please ensure rapidjson is properly installed in the thirdParty directory.")
endif()
# Add subdirectories
add_subdirectory(src)