mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 00:43:31 +08:00
13 lines
332 B
Python
13 lines
332 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
if GetDepend('BSP_USING_HSUSBH') or GetDepend('BSP_USING_USBH'):
|
|
src = Glob('*src/*.c') + Glob('src/*.cpp')
|
|
CPPPATH = [cwd + '/inc']
|
|
group = DefineGroup('n9h30_usbhostlib', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|