mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-23 16:57: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')
|