37 lines
672 B
CMake
37 lines
672 B
CMake
SET(UI_SOURCES screens/ui_ScreenMain.c
|
|
screens/ui_ScreenSingleBPM.c
|
|
screens/ui_ScreenAllBPMStart.c
|
|
screens/ui_ScreenUse.c
|
|
ui.c
|
|
components/ui_comp_hook.c
|
|
ui_helpers.c
|
|
ui_events.c
|
|
fonts/ui_font_Mi25Medium.c
|
|
fonts/ui_font_Mi16Normal.c
|
|
fonts/ui_font_Mi22Normal.c
|
|
fonts/ui_font_Mi22Bold.c
|
|
fonts/ui_font_LENOVO22.c
|
|
fonts/ui_font_global.c
|
|
)
|
|
|
|
# 定义依赖组件变量
|
|
set(UI_REQUIRES
|
|
lvgl
|
|
esp_driver_ledc
|
|
esp_driver_gpio
|
|
user_power_task
|
|
user_common
|
|
user_i80_display
|
|
)
|
|
|
|
# 定义包含目录变量
|
|
set(UI_INCLUDE_DIRS ".")
|
|
|
|
# 注册组件
|
|
idf_component_register(
|
|
SRCS ${UI_SOURCES}
|
|
REQUIRES ${UI_REQUIRES}
|
|
INCLUDE_DIRS ${UI_INCLUDE_DIRS}
|
|
)
|
|
|