From a9eaf5f2fbe7e29dde55af84898fddc6e6560b24 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 30 Apr 2023 22:10:12 +0200 Subject: [PATCH] Added CMakeLists --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..e3497d06 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.13) + +project(radiolib) + +file(GLOB_RECURSE RADIOLIB_SOURCES + "src/*.cpp" +) + +add_library(RadioLib ${RADIOLIB_SOURCES}) + +target_include_directories(RadioLib PUBLIC "src" "${CMAKE_CURRENT_BINARY_DIR}/include")