Home | History | Annotate | Download | only in xlib
      1 #######################################################################
      2 # SConscript for xlib winsys
      3 
      4 
      5 Import('*')
      6 
      7 if env['platform'] in ('cygwin', 'darwin', 'freebsd', 'linux', 'sunos'):
      8 
      9     env = env.Clone()
     10 
     11     env.Append(CPPPATH = [
     12         '#/src/gallium/include',
     13         '#/src/gallium/auxiliary',
     14     ])
     15 
     16     ws_xlib = env.ConvenienceLibrary(
     17         target = 'ws_xlib',
     18         source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
     19     )
     20     env.Alias('ws_xlib', ws_xlib)
     21     Export('ws_xlib')
     22