aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/SConscript
blob: efed9790b77d78ab85e4c78b7145f82291bb09f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Import('*')

env = env.Clone()

env.MSVC2013Compat()

if env['suncc']:
	print('warning: not building svga')
	Return()

env.Prepend(CPPPATH = [
	'include',
])

env.Append(CPPDEFINES = [
])

sources = env.ParseSourceList('Makefile.sources', 'C_SOURCES')

svga = env.ConvenienceLibrary(
	target = 'svga',
	source = sources,
)

env.Alias('svga', svga)

Export('svga')