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