summaryrefslogtreecommitdiff
path: root/libs/cargs/demo/CMakeLists.txt
blob: 0d37d450afc3fe16b2797b0532d37c3de54d8b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmake_minimum_required(VERSION 3.16)
project(cargsdemo)

include(FetchContent)
FetchContent_Declare(cargs
  GIT_REPOSITORY git@github.com:likle/cargs.git
  GIT_TAG stable
)
FetchContent_MakeAvailable(cargs)

add_executable(cargsdemo main.c)

target_link_libraries(cargsdemo cargs)