SConscript 276 B

12345678910111213
  1. from building import *
  2. cwd = GetCurrentDir()
  3. src = Glob('*.c')
  4. SrcRemove(src, ['debug.c'])
  5. path = [cwd]
  6. libcwd = str(Dir('#'))
  7. libinspath = libcwd + '/libraries/lib'
  8. group = DefineGroup('gnu_c', src, depend = [''], CPPPATH = path, LIBINSPATH = libinspath)
  9. Return('group')