mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-11-16 04:24:33 +00:00
13 lines
250 B
Python
13 lines
250 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
CPPPATH = []
|
|
|
|
CPPPATH += [cwd + '/rvv-1.0']
|
|
|
|
group = DefineGroup('CPU', src, depend = ['ARCH_RISCV_VECTOR'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|