mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-01 21:50:29 +08:00
12 lines
235 B
Python
12 lines
235 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
CPPDEFINES = ['STM32F4']
|
|
|
|
group = DefineGroup('LVGL-port', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
Return('group')
|