zip, unzip, caddy, nmap, parted

This commit is contained in:
2026-02-22 19:49:43 +01:00
parent 21e48585b5
commit e5e2980938
13 changed files with 123 additions and 7 deletions

View File

@@ -5,8 +5,6 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(SQLITE_OMIT_LOAD_EXTENSION ON CACHE BOOL "Disable SQLite load_extension()" FORCE)
find_package(blake3 REQUIRED)
include(FetchContent)
FetchContent_Declare(
SQLiteCpp
@@ -15,6 +13,15 @@ FetchContent_Declare(
)
FetchContent_MakeAvailable(SQLiteCpp)
FetchContent_Declare(
blake3
GIT_REPOSITORY https://github.com/BLAKE3-team/BLAKE3.git
GIT_TAG 1.8.3
)
FetchContent_Populate(blake3)
add_subdirectory(${blake3_SOURCE_DIR}/c ${blake3_BINARY_DIR})
add_executable(${PROJECT_NAME} src/main.cc)
target_link_libraries(${PROJECT_NAME} PRIVATE blake3 SQLiteCpp)