fix: improve error handling and logging in data generation pipeline

This commit is contained in:
Aaron Po
2026-04-07 13:36:59 -04:00
parent b8e96a6d45
commit 54c403526b
4 changed files with 183 additions and 116 deletions

View File

@@ -102,3 +102,14 @@ target_link_libraries(${PROJECT_NAME} PRIVATE
spdlog::spdlog
CURL::libcurl
)
# =============================================================================
# 6. Runtime Assets
# =============================================================================
# Make locations.json available in the build directory for runtime relative path
# lookups (e.g. when running from ./build).
configure_file(
${CMAKE_SOURCE_DIR}/locations.json
${CMAKE_BINARY_DIR}/locations.json
COPYONLY
)