Initial commit
This commit is contained in:
commit
bcc648d04c
11 changed files with 239 additions and 0 deletions
19
CMakeLists.txt
Normal file
19
CMakeLists.txt
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue