summaryrefslogtreecommitdiff
path: root/src/gallium/targets/SConscript
blob: 9077cbf6a45b5400b083c303cd120e5c8b038a3a (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
31
32
33
34
35
36
37
38
39
40
import os
Import('*')
	
# Compatibility with old build scripts:
#
if 'xlib' in env['winsys']:
	SConscript([
		'libgl-xlib/SConscript',
	])

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

if not 'graw-xlib' in env['targets'] and not env['msvc']:
        # XXX: disable until MSVC can link correctly
        SConscript('graw-null/SConscript')


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

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

# Ideally all non-target directories would produce convenience
# libraries, and the actual shared libraries and other installables
# would be finally assembled in the targets subtree:
#
for target in env['targets']:
    SConscript(os.path.join(target, 'SConscript'))