mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-11-16 12:34:33 +00:00
13 lines
246 B
Python
13 lines
246 B
Python
# RT-Thread building script for component
|
|
|
|
from building import *
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('arch', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
objs = [group]
|
|
|
|
Return('objs')
|