rt-thread/bsp/CME_M7/CMSIS/SConscript

34 lines
895 B
Python
Raw Normal View History

2014-08-30 00:19:16 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
# get current directory
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Split("""
CME_M7/system_cmem7.c
""")
# add for startup script
if rtconfig.CROSS_TOOL == 'gcc':
2014-11-02 13:51:36 +08:00
src += ['CME_M7/startup/gcc/startup_CME_M7.c']
2014-08-30 00:19:16 +08:00
elif rtconfig.CROSS_TOOL == 'keil':
src += ['CME_M7/startup/arm/startup_cmem7.s']
elif rtconfig.CROSS_TOOL == 'iar':
2014-11-02 13:51:36 +08:00
print '================ERROR============================'
print 'Not support IAR yet!'
print '================================================='
exit(0)
2014-08-30 00:19:16 +08:00
path = [cwd + '/CME_M7']
2014-11-02 13:51:36 +08:00
if GetDepend(['RT_USING_BSP_CMSIS']):
path += [cwd + '/CMSIS/Include']
elif GetDepend(['RT_USING_RTT_CMSIS']):
path += [RTT_ROOT + '/components/CMSIS/Include']
2014-08-30 00:19:16 +08:00
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = path)
Return('group')