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')
|