4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 03:39:22 +08:00
2015-05-15 08:00:14 +08:00

9 lines
211 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd + '/../include']
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_CAN'], CPPPATH = CPPPATH)
Return('group')