一、顶层文件CMakeList.txt
# The following 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)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(3_4_lcd)工程名字这里是复制别人的组件,除工程名自己修改之外其他不变
- 组件文件CMakeList.txt
- 无论是app_main.c还是其他组件都需要有CMakeList.txt
二、组件文件CMakeList.txt
idf_component_register(SRCS "Lcd.c"
//组件下.c文件名字
INCLUDE_DIRS "."
//当前文件目录下
REQUIRES driver)
//引用了esp-idf的组件等于stm32库函数
三、组件文件引用其他组件
- 在其他点c文件下引入其他点c文件只需要在CmakeList文件下引入对应头文件如