mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-25 23:47:22 +08:00
11 lines
198 B
Python
11 lines
198 B
Python
|
from building import *
|
||
|
import os
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = ['drv_lcd.c']
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|