From 16c0cfa18a8a5a2473d3f964222b06620e30291d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Marcell?= Date: Sat, 17 Aug 2024 00:01:31 +0300 Subject: [PATCH 1/3] Create CMakeLists.txt --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1ad327c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.24) +idf_component_register( + SRCS "src/*" # Add all source files here + INCLUDE_DIRS "src" + REQUIRES "arduino" # Add include directories here +) \ No newline at end of file From 85a74ec3f7de55905eb3ad7595247836a94db554 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Marcell?= Date: Sat, 17 Aug 2024 19:29:48 +0300 Subject: [PATCH 2/3] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ad327c..e48f0b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.24) idf_component_register( - SRCS "src/*" # Add all source files here + SRCS "src" # Add all source files here INCLUDE_DIRS "src" REQUIRES "arduino" # Add include directories here ) \ No newline at end of file From b5e2f58df009ac05d9fb35b8463f72075a624ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Marcell?= Date: Sat, 17 Aug 2024 20:32:09 +0300 Subject: [PATCH 3/3] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e48f0b9..96e968a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.24) idf_component_register( - SRCS "src" # Add all source files here + SRC_DIRS "src" # Add all source files here INCLUDE_DIRS "src" REQUIRES "arduino" # Add include directories here ) \ No newline at end of file