19 lines
No EOL
402 B
CMake
19 lines
No EOL
402 B
CMake
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) |