esp32s2_fh4_test_board/main/APP/CMakeLists.txt

10 lines
361 B
CMake
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

cmake_minimum_required(VERSION 3.5)
#添加子目录的源文件给_SUB_SOURCES
aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} _SUB_SOURCES)
#将子目录源文件追加给根目录_SOURCES变量
list(APPEND _SOURCES ${_SUB_SOURCES})
#设置根目录_SOURCES变量在子目录有效
set(_SOURCES ${_SOURCES} PARENT_SCOPE)
add_subdirectory(app_task_hello)