• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#######################################################################
2# SConscript for xlib winsys
3
4
5Import('*')
6
7env = env.Clone()
8
9env.Append(CPPPATH = [
10    '#/src/gallium/include',
11    '#/src/gallium/auxiliary',
12])
13
14ws_wrapper = env.ConvenienceLibrary(
15    target = 'ws_wrapper',
16    source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
17)
18Export('ws_wrapper')
19