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')
|