From 34d7d5a013c4ce62a52a65e98bd8ae7b33ccdf7f Mon Sep 17 00:00:00 2001 From: "Morgan 'ARR\\!' Allen" Date: Wed, 18 Mar 2026 10:52:25 -0700 Subject: [PATCH] explict require --- main/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index cf2c455..19a2889 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -1,2 +1,5 @@ -idf_component_register(SRCS "main.c" - INCLUDE_DIRS ".") +idf_component_register( + INCLUDE_DIRS "." + SRCS "main.c" + REQUIRES esp_netif_lora +)