4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-12 09:59:12 +08:00
2022-01-08 15:48:50 +08:00

20 lines
440 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = []
group = []
CPPPATH = []
if rtconfig.CROSS_TOOL == 'iar':
print("\nThe current project does not support iar build\n")
Return('group')
elif rtconfig.CROSS_TOOL == 'gcc':
src = Glob('*.c')
CPPPATH = [cwd+'/fsp_cfg', cwd + '/fsp_cfg/bsp']
group = group + DefineGroup('ra_cfg', src, depend = [''], CPPPATH = CPPPATH)
Return('group')