circuitpython/ports/espressif/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
717 B
CMake
Raw Normal View History

# The following five lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly
2023-01-06 01:45:06 -05:00
cmake_minimum_required(VERSION 3.16)
set(ENV{IDF_PATH} ${CMAKE_SOURCE_DIR}/esp-idf)
2020-08-12 19:57:39 -04:00
2023-01-06 01:45:06 -05:00
# The component list here determines what options we get in menuconfig and what the ninja file can build.
set(COMPONENTS bt driver esp-tls esp_adc_cal esp_event esp_netif esp_psram esp_wifi esptool_py freertos log lwip main mbedtls mdns soc ulp usb wpa_supplicant esp_lcd)
set(EXTRA_COMPONENT_DIRS esp-protocols/components/mdns)
list(APPEND EXTRA_COMPONENT_DIRS "esp32-camera")
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(circuitpython)
idf_build_set_property(__OUTPUT_SDKCONFIG 0)