Home | History | Annotate | Download | only in softpipe
      1 Import('*')
      2 
      3 env = env.Clone()
      4 
      5 env.MSVC2013Compat()
      6 
      7 softpipe = env.ConvenienceLibrary(
      8 	target = 'softpipe',
      9 	source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
     10 	)
     11 
     12 env.Alias('softpipe', softpipe)
     13 
     14 Export('softpipe')
     15