Subversion Repositories Kolibri OS

Rev

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. ])
  13.  
  14. ws_wrapper = env.ConvenienceLibrary(
  15.     target = 'ws_wrapper',
  16.     source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
  17. )
  18. Export('ws_wrapper')
  19.