mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
8cf0bbb558
Signed-off-by: zhangjipeng <zhangjipeng@xiaomi.com> Co-authored-by: zhangjipeng <zhangjipeng@xiaomi.com> Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
9 lines
323 B
Makefile
9 lines
323 B
Makefile
LVGL_PATH ?= ${shell pwd}/lvgl
|
|
|
|
CSRCS += $(shell find $(LVGL_PATH)/src -type f -name '*.c')
|
|
CSRCS += $(shell find $(LVGL_PATH)/demos -type f -name '*.c')
|
|
CSRCS += $(shell find $(LVGL_PATH)/examples -type f -name '*.c')
|
|
CXXSRCS += $(shell find $(LVGL_PATH)/src/libs/thorvg -type f -name '*.cpp')
|
|
CFLAGS += "-I$(LVGL_PATH)"
|
|
|