Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SConscript 493B

1234567891011121314151617181920212223
  1. #######################################################################
  2. # SConscript for xlib winsys
  3. Import('*')
  4. if env['platform'] in ('cygwin', 'freebsd', 'linux', 'sunos'):
  5. env = env.Clone()
  6. env.Append(CPPPATH = [
  7. '#/src/gallium/include',
  8. '#/src/gallium/auxiliary',
  9. '#/src/gallium/drivers',
  10. ])
  11. ws_xlib = env.ConvenienceLibrary(
  12. target = 'ws_xlib',
  13. source = [
  14. 'xlib_sw_winsys.c',
  15. ]
  16. )
  17. Export('ws_xlib')