before parsing grades

This commit is contained in:
2025-12-17 17:16:37 -06:00
parent 314cb65843
commit a953f2d303
10 changed files with 276 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ endif()
# -----------------------------
# Project setup
# -----------------------------
project(mainframe LANGUAGES CXX)
project(skyward LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -27,6 +27,7 @@ add_subdirectory(external/spdlog)
add_subdirectory(external/cpr)
add_subdirectory(external/clickhouse-cpp)
add_subdirectory(external/tomlplusplus)
add_subdirectory(external/json)
# -----------------------------
# Executable
# -----------------------------
@@ -63,6 +64,7 @@ target_link_libraries(${PROJECT_NAME} PRIVATE
cpr::cpr
clickhouse-cpp-lib
tomlplusplus::tomlplusplus
nlohmann_json::nlohmann_json
)
# -----------------------------