first commit
This commit is contained in:
commit
5893b00dd2
1669 changed files with 1982740 additions and 0 deletions
34
libraries/M5GFX/CMakeLists.txt
Normal file
34
libraries/M5GFX/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
set(COMPONENT_ADD_INCLUDEDIRS
|
||||
src
|
||||
)
|
||||
file(GLOB SRCS
|
||||
src/*.cpp
|
||||
src/lgfx/Fonts/efont/*.c
|
||||
src/lgfx/Fonts/IPA/*.c
|
||||
src/lgfx/utility/*.c
|
||||
src/lgfx/v1/*.cpp
|
||||
src/lgfx/v1/misc/*.cpp
|
||||
src/lgfx/v1/panel/*.cpp
|
||||
src/lgfx/v1/platforms/esp32/*.cpp
|
||||
src/lgfx/v1/platforms/esp32c3/*.cpp
|
||||
src/lgfx/v1/platforms/esp32s3/*.cpp
|
||||
src/lgfx/v1/platforms/esp32p4/*.cpp
|
||||
src/lgfx/v1/touch/*.cpp
|
||||
)
|
||||
set(COMPONENT_SRCS ${SRCS})
|
||||
|
||||
if (IDF_VERSION_MAJOR GREATER_EQUAL 5)
|
||||
set(COMPONENT_REQUIRES nvs_flash efuse driver esp_timer esp_lcd esp_mm)
|
||||
elseif ((IDF_VERSION_MAJOR EQUAL 4) AND (IDF_VERSION_MINOR GREATER 3) OR IDF_VERSION_MAJOR GREATER 4)
|
||||
set(COMPONENT_REQUIRES nvs_flash efuse esp_lcd)
|
||||
else()
|
||||
set(COMPONENT_REQUIRES nvs_flash efuse)
|
||||
endif()
|
||||
|
||||
### If you use arduino-esp32 components, please activate next comment line.
|
||||
# list(APPEND COMPONENT_REQUIRES arduino-esp32)
|
||||
|
||||
|
||||
message(STATUS "M5GFX use components = ${COMPONENT_REQUIRES}")
|
||||
|
||||
register_component()
|
||||
Loading…
Add table
Add a link
Reference in a new issue