4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 15:23:31 +08:00

12 lines
234 B
Python
Raw Normal View History

2016-04-24 19:34:41 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
2017-11-11 13:51:56 +08:00
CPPPATH = [cwd]
2016-04-24 19:34:41 +08:00
2017-11-11 13:51:56 +08:00
group = DefineGroup('DriversUSBD', src, depend = ['RT_USING_USB_DEVICE'], CPPPATH = CPPPATH)
2016-04-24 19:34:41 +08:00
Return('group')