From 3a303eeb45de78dba9987808bc5bef6440a0f8f8 Mon Sep 17 00:00:00 2001 From: Avi B <474746+abrender@users.noreply.github.com> Date: Sat, 10 Jun 2023 21:53:21 -0400 Subject: [PATCH] Update CMakeLists.txt (#1624) Change `REQUIRES` to `PRIV_REQUIRES` because the public API of this package does not require users of this package to know about `arduino`. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7bd408a5e..c87bb2035 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5) idf_component_register( SRCS "WiFiManager.cpp" INCLUDE_DIRS "." - REQUIRES arduino + PRIV_REQUIRES arduino ) project(WiFiManager)