Skip to content

Commit

Permalink
Support for WifiManager as ESP-IDF component (tzapu#1489)
Browse files Browse the repository at this point in the history
Enables support for WifiManager as an ESP-IDF component.  ESP-IDF is a popular development framework for ESP32 chips.

This file is based on the CMakeLists.txt file from the popular Adafruit-GFX-Library library.
  • Loading branch information
abrender authored Oct 4, 2022
1 parent 9e4b7cb commit 48d4dbc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.5)

idf_component_register(
SRCS "WiFiManager.cpp"
INCLUDE_DIRS "."
REQUIRES arduino
)

project(WiFiManager)

0 comments on commit 48d4dbc

Please sign in to comment.