mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-17 04:42:16 +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
16 lines
455 B
Makefile
16 lines
455 B
Makefile
#
|
|
# "main" pseudo-component makefile.
|
|
#
|
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
|
CXXFLAGS += -D__AVR_ATtiny85__
|
|
|
|
# ifdef CONFIG_IOT_EINK_ENABLE
|
|
COMPONENT_ADD_INCLUDEDIRS := include Adafruit-GFX-Library/Fonts Adafruit-GFX-Library
|
|
COMPONENT_SRCDIRS := . Adafruit-GFX-Library
|
|
|
|
# else
|
|
# # Disable component
|
|
# COMPONENT_ADD_INCLUDEDIRS :=
|
|
# COMPONENT_ADD_LDFLAGS :=
|
|
# COMPONENT_SRCDIRS :=
|
|
# endif
|