change stats json formatting and add progress bars library

This commit is contained in:
2025-10-19 19:02:44 +02:00
parent 7a89c18d8e
commit ca7a2c51fb
2 changed files with 23 additions and 4 deletions

View File

@@ -26,11 +26,19 @@ FetchContent_Declare(
)
FetchContent_MakeAvailable(sqlite3pp)
FetchContent_Declare(
indicators
GIT_REPOSITORY https://github.com/p-ranav/indicators.git
GIT_TAG master
)
FetchContent_MakeAvailable(indicators)
file(GLOB SOURCES src/*.cpp)
add_executable(${PROJECT_NAME} ${SOURCES})
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD 17)
target_include_directories(${PROJECT_NAME} PUBLIC
include
${sqlite3pp_SOURCE_DIR}/headeronly_src
${indicators_SOURCE_DIR}/include
)
target_link_libraries(${PROJECT_NAME} PRIVATE SQLite::SQLite3)