forked from Xinyuan-LilyGO/lilygo-micropython
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmicropython.cmake
More file actions
28 lines (22 loc) · 782 Bytes
/
Copy pathmicropython.cmake
File metadata and controls
28 lines (22 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This top-level micropython.cmake is responsible for listing
# the individual modules we want to include.
# Paths are absolute, and ${CMAKE_CURRENT_LIST_DIR} can be
# used to prefix subdirectories.
if(EXTMOD_EPD)
include(${CMAKE_CURRENT_LIST_DIR}/display/epd/src/micropython.cmake)
endif()
if(EXTMOD_GSM)
include(${CMAKE_CURRENT_LIST_DIR}/network/gsm/src/micropython.cmake)
endif()
if(EXTMOD_ST7789)
include(${CMAKE_CURRENT_LIST_DIR}/display/st7789/src/micropython.cmake)
endif()
if(EXTMOD_LCD)
include(${CMAKE_CURRENT_LIST_DIR}/display/lcd/src/micropython.cmake)
endif()
if(EXTMOD_BMA)
include(${CMAKE_CURRENT_LIST_DIR}/sensor/bma/src/micropython.cmake)
endif()
if(EXTMOD_FRAMEBUF_PLUS)
include(${CMAKE_CURRENT_LIST_DIR}/display/framebuf_plus/src/micropython.cmake)
endif()