summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/SConscript
blob: dc3542c51004b325ac15f6f0be53b28a026acb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Import('*')

env = env.Clone()

env.MSVC2008Compat()

softpipe = env.ConvenienceLibrary(
	target = 'softpipe',
	source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
	)

env.Alias('softpipe', softpipe)

Export('softpipe')