rt-thread-official/bsp/renesas/ra6m4-iot/ra_gen/SConscript

23 lines
532 B
Python
Raw Normal View History

2022-01-14 18:10:27 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = []
group = []
CPPPATH = []
if rtconfig.PLATFORM in ['iccarm']:
2022-01-14 18:10:27 +08:00
print("\nThe current project does not support iar build\n")
Return('group')
elif rtconfig.PLATFORM in ['gcc'] :
2022-01-14 18:10:27 +08:00
src = Glob('*.c')
CPPPATH = [cwd, ]
elif rtconfig.PLATFORM == 'armclang':
if GetOption('target') != 'mdk5':
src = Glob('*.c')
CPPPATH = [cwd, ]
2022-01-14 18:10:27 +08:00
group = DefineGroup('ra_gen', src, depend = [''], CPPPATH = CPPPATH)
Return('group')