mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 04:23:44 +08:00
12 lines
234 B
Python
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')
|