4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 17:49:27 +08:00

15 lines
301 B
Groff
Raw Normal View History

2019-01-07 06:09:45 +08:00
# 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')