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

12 lines
208 B
Python
Raw Normal View History

2017-08-08 11:56:50 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
2023-01-08 21:14:23 -05:00
src = Glob('*.c')
2017-08-08 11:56:50 +08:00
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
Return('group')