Initial commit

This commit is contained in:
Евгений Титаренко 2025-08-25 12:00:22 +03:00
commit bcc648d04c
11 changed files with 239 additions and 0 deletions

19
CMakeLists.txt Normal file
View file

@ -0,0 +1,19 @@
cmake_minimum_required(VERSION 3.31)
project(local_meme_db)
set(CMAKE_CXX_STANDARD 23)
include(FetchContent)
FetchContent_Declare(
argparse
GIT_REPOSITORY https://github.com/p-ranav/argparse.git
)
FetchContent_MakeAvailable(argparse)
add_executable(local_meme_db src/main.cpp
src/core/commands.cpp
src/core/commands.h
)
target_link_libraries(local_meme_db argparse)