rt-thread/bsp/imx6ul/drivers/SConscript

11 lines
205 B
Python
Raw Normal View History

2017-11-01 13:30:17 +08:00
from building import *
cwd = GetCurrentDir()
2023-01-09 10:14:23 +08:00
src = Glob('*.c') + Glob('iomux/*.c')
2017-11-01 13:30:17 +08:00
CPPPATH = [cwd, cwd + '/iomux']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')