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

12 lines
216 B
Python
Raw Normal View History

2018-12-05 11:44:53 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = Glob('*.c')
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
Return('group')