rt-thread/bsp/gkipc/libraries/drv/gnu_c/SConscript

14 lines
276 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'
group = DefineGroup('gnu_c', src, depend = [''], CPPPATH = path, LIBINSPATH = libinspath)
Return('group')