mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
15 lines
301 B
Python
15 lines
301 B
Python
|
|
# RT-Thread building script for component
|
||
|
|
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
Import('rtconfig')
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
|
||
|
|
CPPPATH = [cwd]
|
||
|
|
ASFLAGS = ''
|
||
|
|
|
||
|
|
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
|
||
|
|
|
||
|
|
Return('group')
|