summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/SConscript
blob: be5db88e41cef368d38733a4f191df7a391ab2eb (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
28
29
30
Import('*')
	
if 'xlib' in env['winsys']:
	SConscript([
		'libgl-xlib/SConscript',
	])

if 'gdi' in env['winsys']:
	SConscript([
		'libgl-gdi/SConscript',
	])

if env['platform'] == 'linux' and 'xlib' in env['winsys'] and 'graw-xlib' in env['winsys']:
	SConscript([
		'graw-xlib/SConscript',
	])
else:
    SConscript('graw-null/SConscript')


if env['dri']:
	SConscript([
		'SConscript.dri'
	])

if 'xorg' in env['statetrackers']:
	if 'vmware' in env['winsys']:
		SConscript([
			'xorg-vmwgfx/SConscript',
		])