Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  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.     '#/src/gallium/drivers',
  13. ])
  14.  
  15. ws_wrapper = env.ConvenienceLibrary(
  16.     target = 'ws_wrapper',
  17.     source = [
  18.        'wrapper_sw_winsys.c',
  19.     ]
  20. )
  21. Export('ws_wrapper')
  22.