20 lines
442 B
CMake
20 lines
442 B
CMake
cmake_minimum_required(VERSION 3.22)
|
|
|
|
project(middlewares)
|
|
|
|
add_subdirectory(Third_Party/freertos)
|
|
add_subdirectory(Third_Party/easylogger)
|
|
add_subdirectory(Third_Party/fatfs)
|
|
# add_subdirectory(Third_Party/lvgl)
|
|
add_subdirectory(Third_Party/dr_libs)
|
|
add_subdirectory(Third_Party/tlsf)
|
|
|
|
# target_compile_options(lvgl_demos PRIVATE
|
|
# -Wformat=0
|
|
# )
|
|
|
|
# target_compile_options(lvgl_examples PRIVATE
|
|
# -Wformat=0
|
|
# -Wno-unused-variable
|
|
# )
|