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