4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-05 16:44:33 +08:00

14 lines
280 B
Python
Raw Normal View History

2018-03-04 08:21:19 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
SrcRemove(src, ['debug.c'])
path = [cwd]
libcwd = str(Dir('#'))
libinspath = libcwd + '/libraries/lib'
2020-12-19 16:49:11 +08:00
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, LIBINSPATH = libinspath)
2018-03-04 08:21:19 +08:00
Return('group')