11 lines
194 B
Python
Raw Normal View History

from building import *
import os
cwd = GetCurrentDir()
src = ['drv_lcd.c']
CPPPATH = [cwd]
2023-01-08 21:14:23 -05:00
group = DefineGroup('Drivers', src, depend = ['BSP_USING_LVGL'], CPPPATH = CPPPATH)
Return('group')