rt-thread-official/components/libc/compilers/common/extension/SConscript

22 lines
489 B
Python
Raw Normal View History

import os
from building import *
Import('rtconfig')
2021-04-18 00:55:32 +08:00
src = []
cwd = GetCurrentDir()
CPPPATH = [cwd]
group = []
2021-12-26 22:41:24 +08:00
src += Glob('*.c')
2023-05-17 17:17:38 +08:00
if rtconfig.PLATFORM != 'gcc' and rtconfig.PLATFORM != 'llvm-arm':
2021-12-29 12:25:16 +08:00
group = DefineGroup('Compiler', src, depend = [''], CPPPATH = CPPPATH)
list = os.listdir(cwd)
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'))
2021-04-18 00:55:32 +08:00
Return('group')