rt-thread/libcpu/risc-v/ch32/SConscript

18 lines
353 B
Python
Raw Normal View History

2022-08-23 09:55:27 +08:00
# RT-Thread building script for component
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
ASFLAGS = ' -I ' + cwd
2022-08-23 09:55:27 +08:00
if rtconfig.PLATFORM == 'gcc':
src += Glob('*_gcc.S')
group = DefineGroup('cpu', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
2022-08-23 09:55:27 +08:00
Return('group')