Home | History | Annotate | Download | only in gdi
      1 #######################################################################
      2 # SConscript for xlib winsys
      3 
      4 
      5 Import('*')
      6 
      7 if env['platform'] == 'windows':
      8 
      9     env = env.Clone()
     10 
     11     env.Append(CPPPATH = [
     12         '#/src/gallium/include',
     13         '#/src/gallium/auxiliary',
     14         '#/src/gallium/drivers',
     15     ])
     16 
     17     ws_gdi = env.ConvenienceLibrary(
     18         target = 'ws_gdi',
     19         source = [
     20            'gdi_sw_winsys.c',
     21         ]
     22     )
     23     Export('ws_gdi')
     24