rt-thread-official/libcpu/risc-v/e310/SConscript

15 lines
301 B
Python
Raw Normal View History

2019-01-07 06:09:45 +08:00
# RT-Thread building script for component
2018-05-31 13:01:38 +08:00
from building import *
2019-01-07 06:09:45 +08:00
Import('rtconfig')
2018-05-31 13:01:38 +08:00
cwd = GetCurrentDir()
2019-01-07 06:09:45 +08:00
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
2018-05-31 13:01:38 +08:00
CPPPATH = [cwd]
2019-01-07 06:09:45 +08:00
ASFLAGS = ''
2018-05-31 13:01:38 +08:00
2019-01-07 06:09:45 +08:00
group = DefineGroup('cpu', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
2018-05-31 13:01:38 +08:00
Return('group')