2020-08-06 14:41:32 +02: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 10:10:51 +02:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2020-08-06 14:41:32 +02:00
|
|
|
|
2024-01-19 14:38:30 +01:00
|
|
|
add_compile_options(-w) # Turn off warnings until esp_tinyusb is updated IEC-86
|
2023-07-24 14:25:42 +02:00
|
|
|
# "Trim" the build. Include the minimal set of components, main, and anything it depends on.
|
|
|
|
set(COMPONENTS main)
|
2020-08-06 14:41:32 +02:00
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
project(tusb_console)
|