From c8befe7c95b18869f995c4f2cbc2f4cf9c91924f Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Mon, 27 Mar 2023 11:53:41 -0400 Subject: initial commit --- CMakeLists.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..001f41f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.0) +project(142-bot VERSION 0.1 LANGUAGES CXX C) + +set(CMAKE_C_STANDARD 11 REQUIRED) + +include(FetchContent) +FetchContent_Declare(clog + GIT_REPOSITORY https://git.devcara.com/clog + GIT_TAG 0.1.0 +) + +FetchContent_Declare(dpp + GIT_REPOSITORY https://github.com/brainboxdotcc/DPP + GIT_TAG v10.0.23 +) + +FetchContent_MakeAvailable(clog dpp) + +add_subdirectory(src) -- cgit v1.2.3