rt-thread/libcpu/risc-v/t-head/e906/SConscript

13 lines
284 B
Python
Raw Normal View History

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
CPPPATH = [cwd]
ASFLAGS = ''
2020-11-20 13:38:11 +08:00
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
Return('group')