4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 08:57:20 +08:00

10 lines
210 B
Python
Raw Normal View History

2020-01-15 17:19:49 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
CPPPATH = [cwd]
group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
2020-01-15 17:19:49 +08:00
Return('group')