4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 14:29:25 +08:00
2017-08-08 11:56:50 +08:00

12 lines
208 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = Glob('*.c')
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
Return('group')