4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 23:23:30 +08:00
2017-11-11 13:53:20 +08:00

12 lines
234 B
Python

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('DriversUSBD', src, depend = ['RT_USING_USB_DEVICE'], CPPPATH = CPPPATH)
Return('group')