SConscript 276 字节
Newer Older
G
gokemicro 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
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')