2023-06-08 01:29:22 -04:00
|
|
|
# The following lines of boilerplate have to be in your project's
|
|
|
|
# CMakeLists in this exact order for cmake to work correctly
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
|
|
|
|
# This example needs a DNS server: let's use the simple DNS server implementation from captive portal example
|
2023-06-01 16:44:11 -04:00
|
|
|
set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/protocols/http_server/captive_portal/components/dns_server
|
|
|
|
$ENV{IDF_PATH}/examples/ethernet/basic/components/ethernet_init)
|
2023-06-08 01:29:22 -04:00
|
|
|
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
2023-06-08 12:01:21 -04:00
|
|
|
project(sta_to_eth)
|