summaryrefslogtreecommitdiff
path: root/src/gallium/targets/SConscript
blob: 97187030abc2c5195ecb09d181b49462c416f431 (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
41
42
43
44
45
46
47
import os
Import('*')
	
# Compatibility with old build scripts:
#
if 'mesa' in env['statetrackers']:
	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 'graw-null' 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',
		])

if 'egl' in env['statetrackers']:
	SConscript([
		'egl-swrast/SConscript',
		'egl-apis/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'))