• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Import('*')
2
3env = env.Clone()
4
5env.Prepend(CPPPATH = [
6    '../../../compiler/nir',
7    ])
8
9env.MSVC2013Compat()
10
11softpipe = env.ConvenienceLibrary(
12	target = 'softpipe',
13	source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
14	)
15
16env.Alias('softpipe', softpipe)
17
18Export('softpipe')
19