mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-28 01:18:15 +02:00
46 lines
639 B
Python
46 lines
639 B
Python
Import('*')
|
|
|
|
|
|
SConscript([
|
|
'sw/wrapper/SConscript',
|
|
])
|
|
|
|
if 'xlib' in env['winsys']:
|
|
SConscript([
|
|
'sw/xlib/SConscript',
|
|
])
|
|
|
|
if 'gdi' in env['winsys']:
|
|
SConscript([
|
|
'sw/gdi/SConscript',
|
|
])
|
|
|
|
if env['dri']:
|
|
SConscript([
|
|
'sw/dri/SConscript',
|
|
])
|
|
|
|
if 'vmware' in env['winsys']:
|
|
SConscript([
|
|
'svga/drm/SConscript',
|
|
])
|
|
|
|
if 'i915' in env['winsys']:
|
|
SConscript([
|
|
'i915/drm/SConscript',
|
|
])
|
|
|
|
if 'i965' in env['winsys']:
|
|
SConscript([
|
|
'i965/drm/SConscript',
|
|
])
|
|
|
|
if 'radeon' in env['winsys']:
|
|
SConscript([
|
|
'radeon/drm/SConscript',
|
|
])
|
|
|
|
if 'r600' in env['winsys']:
|
|
SConscript([
|
|
'r600/drm/SConscript',
|
|
])
|