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