rt-thread-official/bsp/fujitsu/mb9x/mb9bf568r/CMSIS/SConscript

20 lines
469 B
Python
Raw Normal View History

2014-10-20 10:10:18 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('DeviceSupport/*.c')
CPPPATH = [cwd + '/Include', cwd + '/DeviceSupport']
2023-01-09 10:14:23 +08:00
# add for startup script
if rtconfig.PLATFORM in ['armcc', 'armclang']:
src += ['DeviceSupport/arm/startup_mb9bf56xr.s']
2014-10-20 10:10:18 +08:00
if rtconfig.PLATFORM in ['gcc']:
src += ['DeviceSupport/gcc/startup_mb9bf56xr.S']
2014-10-20 10:10:18 +08:00
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = CPPPATH)
Return('group')