mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
chore(make): order the source files in *.mk (#3468)
* chore(make): sync component.mk with the last directory layout Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> * chore(make): order the source files in *.mk Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
4133f1d317
commit
ea1d670f06
35
component.mk
35
component.mk
@ -6,24 +6,53 @@ COMPONENT_SRCDIRS := . \
|
||||
src/draw \
|
||||
src/extra \
|
||||
src/font \
|
||||
src/gpu \
|
||||
src/hal \
|
||||
src/misc \
|
||||
src/widgets \
|
||||
src/draw/arm2d \
|
||||
src/draw/nxp \
|
||||
src/draw/sdl \
|
||||
src/draw/stm32_dma2d \
|
||||
src/draw/sw \
|
||||
src/draw/swm342_dma2d \
|
||||
src/extra/layouts \
|
||||
src/extra/libs \
|
||||
src/extra/others \
|
||||
src/extra/themes \
|
||||
src/extra/widgets \
|
||||
src/extra/layouts/flex \
|
||||
src/extra/layouts/grid \
|
||||
src/extra/themes \
|
||||
src/extra/libs/bmp \
|
||||
src/extra/libs/ffmpeg \
|
||||
src/extra/libs/freetype \
|
||||
src/extra/libs/fsdrv \
|
||||
src/extra/libs/gif \
|
||||
src/extra/libs/png \
|
||||
src/extra/libs/qrcode \
|
||||
src/extra/libs/rlottie \
|
||||
src/extra/libs/sjgp \
|
||||
src/extra/others/fragment \
|
||||
src/extra/others/gridnav \
|
||||
src/extra/others/ime \
|
||||
src/extra/others/imgfont \
|
||||
src/extra/others/monkey \
|
||||
src/extra/others/msg \
|
||||
src/extra/others/snapshot \
|
||||
src/extra/themes/basic \
|
||||
src/extra/themes/default \
|
||||
src/extra/themes/mono \
|
||||
src/extra/widgets/animimg \
|
||||
src/extra/widgets/calendar \
|
||||
src/extra/widgets/chart \
|
||||
src/extra/widgets/colorwheel \
|
||||
src/extra/widgets \
|
||||
src/extra/widgets/imgbtn \
|
||||
src/extra/widgets/keyboard \
|
||||
src/extra/widgets/led \
|
||||
src/extra/widgets/list \
|
||||
src/extra/widgets/menu \
|
||||
src/extra/widgets/meter \
|
||||
src/extra/widgets/msgbox \
|
||||
src/extra/widgets/span \
|
||||
src/extra/widgets/spinbox \
|
||||
src/extra/widgets/spinner \
|
||||
src/extra/widgets/tabview \
|
||||
|
@ -1,4 +1,5 @@
|
||||
CSRCS += lv_disp.c
|
||||
CSRCS += lv_event.c
|
||||
CSRCS += lv_group.c
|
||||
CSRCS += lv_indev.c
|
||||
CSRCS += lv_indev_scroll.c
|
||||
@ -10,7 +11,6 @@ CSRCS += lv_obj_scroll.c
|
||||
CSRCS += lv_obj_style.c
|
||||
CSRCS += lv_obj_style_gen.c
|
||||
CSRCS += lv_obj_tree.c
|
||||
CSRCS += lv_event.c
|
||||
CSRCS += lv_refr.c
|
||||
CSRCS += lv_theme.c
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
CSRCS += lv_draw_arc.c
|
||||
CSRCS += lv_draw.c
|
||||
CSRCS += lv_draw_arc.c
|
||||
CSRCS += lv_draw_img.c
|
||||
CSRCS += lv_draw_label.c
|
||||
CSRCS += lv_draw_layer.c
|
||||
CSRCS += lv_draw_line.c
|
||||
CSRCS += lv_draw_mask.c
|
||||
CSRCS += lv_draw_rect.c
|
||||
CSRCS += lv_draw_transform.c
|
||||
CSRCS += lv_draw_layer.c
|
||||
CSRCS += lv_draw_triangle.c
|
||||
CSRCS += lv_img_buf.c
|
||||
CSRCS += lv_img_cache.c
|
||||
|
@ -4,6 +4,7 @@ CSRCS += lv_draw_sdl_bg.c
|
||||
CSRCS += lv_draw_sdl_composite.c
|
||||
CSRCS += lv_draw_sdl_img.c
|
||||
CSRCS += lv_draw_sdl_label.c
|
||||
CSRCS += lv_draw_sdl_layer.c
|
||||
CSRCS += lv_draw_sdl_line.c
|
||||
CSRCS += lv_draw_sdl_mask.c
|
||||
CSRCS += lv_draw_sdl_polygon.c
|
||||
@ -11,7 +12,6 @@ CSRCS += lv_draw_sdl_rect.c
|
||||
CSRCS += lv_draw_sdl_stack_blur.c
|
||||
CSRCS += lv_draw_sdl_texture_cache.c
|
||||
CSRCS += lv_draw_sdl_utils.c
|
||||
CSRCS += lv_draw_sdl_layer.c
|
||||
|
||||
DEPPATH += --dep-path $(LVGL_DIR)/$(LVGL_DIR_NAME)/src/draw/sdl
|
||||
VPATH += :$(LVGL_DIR)/$(LVGL_DIR_NAME)/src/draw/sdl
|
||||
|
Loading…
x
Reference in New Issue
Block a user