zip, unzip, caddy, nmap, parted
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user