mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-14 01:57:43 +08:00

- For now, the example gets an image from the camera and puts it on the LCD - TODO: image is rotated and refresh rate not good
40 lines
887 B
Makefile
40 lines
887 B
Makefile
#
|
|
# "main" pseudo-component makefile.
|
|
#
|
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
|
|
|
LVGLLIB = lvgl
|
|
|
|
COMPONENT_SRCDIRS := . \
|
|
./include \
|
|
$(LVGLLIB) \
|
|
$(LVGLLIB)/lv_core \
|
|
$(LVGLLIB)/lv_draw \
|
|
$(LVGLLIB)/lv_hal \
|
|
$(LVGLLIB)/lv_misc \
|
|
$(LVGLLIB)/lv_fonts \
|
|
$(LVGLLIB)/lv_objx \
|
|
$(LVGLLIB)/lv_themes \
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := . \
|
|
./include \
|
|
$(LVGLLIB) \
|
|
$(LVGLLIB)/lv_core \
|
|
$(LVGLLIB)/lv_draw \
|
|
$(LVGLLIB)/lv_hal \
|
|
$(LVGLLIB)/lv_misc \
|
|
$(LVGLLIB)/lv_fonts \
|
|
$(LVGLLIB)/lv_objx \
|
|
$(LVGLLIB)/lv_themes \
|
|
|
|
COMPONENT_PRIV_INCLUDEDIRS += . \
|
|
./include \
|
|
$(LVGLLIB) \
|
|
$(LVGLLIB)/lv_core \
|
|
$(LVGLLIB)/lv_draw \
|
|
$(LVGLLIB)/lv_hal \
|
|
$(LVGLLIB)/lv_misc \
|
|
$(LVGLLIB)/lv_fonts \
|
|
$(LVGLLIB)/lv_objx \
|
|
$(LVGLLIB)/lv_themes \
|