4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-05 13:44:56 +08:00
2020-12-19 16:49:11 +08:00

14 lines
280 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
SrcRemove(src, ['debug.c'])
path = [cwd]
libcwd = str(Dir('#'))
libinspath = libcwd + '/libraries/lib'
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, LIBINSPATH = libinspath)
Return('group')