Merge remote branch 'origin/master' into glsl2
[mesa.git] / src / gallium / winsys / SConscript
1 Import('*')
2
3
4 SConscript([
5 'sw/wrapper/SConscript',
6 ])
7
8 if 'xlib' in env['winsys']:
9 SConscript([
10 'sw/xlib/SConscript',
11 ])
12
13 if 'gdi' in env['winsys']:
14 SConscript([
15 'sw/gdi/SConscript',
16 ])
17
18 if env['dri']:
19 SConscript([
20 'sw/dri/SConscript',
21 ])
22
23 if 'vmware' in env['winsys']:
24 SConscript([
25 'svga/drm/SConscript',
26 ])
27
28 if 'i915' in env['winsys']:
29 SConscript([
30 'i915/drm/SConscript',
31 ])
32
33 if 'i965' in env['winsys']:
34 SConscript([
35 'i965/drm/SConscript',
36 ])
37
38 if 'radeon' in env['winsys']:
39 SConscript([
40 'radeon/drm/SConscript',
41 ])
42
43 if 'r600' in env['winsys']:
44 SConscript([
45 'r600/drm/SConscript',
46 ])