Add metadata!

This commit is contained in:
Your Name
2025-05-03 10:14:16 +12:00
parent 16754a48d4
commit 24a4c66c13
8 changed files with 283 additions and 149 deletions

View File

@@ -5,19 +5,17 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Find required packages
find_package(Threads REQUIRED)
find_package(SQLite3 REQUIRED)
find_package(ZLIB REQUIRED)
# Find all source files in src directory
file(GLOB_RECURSE SOURCES
"src/*.cpp"
"hash.cpp"
)
# Find all header files in src directory
file(GLOB_RECURSE HEADERS
"src/*.hpp"
"hash.hpp"
)
# Add include directories
@@ -31,8 +29,8 @@ add_executable(simple_object_storage ${SOURCES})
# Link libraries
target_link_libraries(simple_object_storage
Threads::Threads
SQLite::SQLite3
ZLIB::ZLIB
)
# Install target