mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-23 22:07:29 +08:00
12 lines
247 B
Python
12 lines
247 B
Python
|
# RT-Thread building script for component
|
||
|
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c') + Glob('*.S')
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('lwp-riscv', src, depend = ['RT_USING_LWP'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|