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

31 lines
758 B
Python
Raw Normal View History

2022-01-14 18:10:27 +08:00
# for module compiling
import os
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = []
CPPPATH = []
list = os.listdir(cwd)
if rtconfig.PLATFORM == 'iar':
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
CPPPATH = [cwd]
src = Glob('./src/*.c')
elif rtconfig.PLATFORM == 'armclang':
if GetOption('target') != 'mdk5':
CPPPATH = [cwd]
src = Glob('./src/*.c')
2022-01-14 18:10:27 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
group = group + SConscript(os.path.join(d, 'SConscript'))
Return('group')