mirror of
https://github.com/espressif/esp-drone.git
synced 2026-07-21 02:05:37 +00:00
1. fix build issue (no need to modify link scrip) 2. support idf>=4.4 3. support esp32s3 4. add ci to test build process Close https://github.com/espressif/esp-drone/issues/41, Close https://github.com/espressif/esp-drone/issues/5, Close https://github.com/espressif/esp-drone/issues/6, Close https://github.com/espressif/esp-drone/issues/16, Close https://github.com/espressif/esp-drone/issues/31, Close https://github.com/espressif/esp-drone/issues/41, ci: add build test for all target
18 lines
667 B
CMake
18 lines
667 B
CMake
# The following five 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.5)
|
|
|
|
set(__PROJECT_GROUP_LINK_COMPONENTS ON)
|
|
|
|
set(PLANE_COMPONENT_DIRS "./components/core"
|
|
"./components/drivers"
|
|
"./components/drivers/general"
|
|
"./components/drivers/i2c_devices"
|
|
"./components/drivers/spi_devices"
|
|
"./components/lib" )
|
|
|
|
set(EXTRA_COMPONENT_DIRS "${EXTRA_COMPONENT_DIRS} ${PLANE_COMPONENT_DIRS}")
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(ESPDrone)
|