2018-10-02 14:33:16 +00:00
|
|
|
# The following five lines of boilerplate have to be in your project's
|
|
|
|
# CMakeLists in this exact order for cmake to work correctly
|
2022-05-27 08:10:51 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2018-10-02 14:33:16 +00:00
|
|
|
|
2023-01-31 07:30:21 +00:00
|
|
|
if("${IDF_TARGET}" STREQUAL "linux")
|
2023-04-03 18:31:51 +00:00
|
|
|
set(COMPONENTS main esp_netif lwip protocol_examples_tapif_io startup esp_hw_support esp_system nvs_flash)
|
2023-01-31 07:30:21 +00:00
|
|
|
endif()
|
2018-11-20 16:41:08 +00:00
|
|
|
|
2018-10-02 14:33:16 +00:00
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
project(udp_client)
|