rt-thread-official/bsp/nuvoton/libraries/n9h30/UsbHostLib/SConscript

13 lines
341 B
Python
Raw Normal View History

2021-05-12 19:15:17 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
group = []
if GetDepend('BSP_USING_HSUSBH') or GetDepend('BSP_USING_USBH'):
2023-01-09 10:14:23 +08:00
src = Glob('*src/*.c') + Glob('src/*.cpp')
CPPPATH = [cwd + '/inc']
group = DefineGroup('n9h30_usbhostlib', src, depend = [''], CPPPATH = CPPPATH)
2021-05-12 19:15:17 +08:00
Return('group')