8c9b9aac7d
Acked-by: Eric Anholt <eric@anholt.net> Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4902>
57 lines
925 B
Python
57 lines
925 B
Python
Import('env')
|
|
|
|
#
|
|
# Auxiliary modules
|
|
#
|
|
|
|
SConscript('auxiliary/SConscript')
|
|
SConscript('auxiliary/pipe-loader/SConscript')
|
|
|
|
#
|
|
# Drivers
|
|
#
|
|
|
|
# These are common and work across all platforms
|
|
SConscript([
|
|
'drivers/llvmpipe/SConscript',
|
|
'drivers/softpipe/SConscript',
|
|
'drivers/svga/SConscript',
|
|
])
|
|
|
|
#
|
|
# Winsys
|
|
#
|
|
|
|
SConscript([
|
|
'winsys/sw/null/SConscript',
|
|
'winsys/sw/wrapper/SConscript',
|
|
])
|
|
|
|
if env['x11']:
|
|
SConscript([
|
|
'winsys/sw/xlib/SConscript',
|
|
])
|
|
|
|
if env['platform'] == 'windows':
|
|
SConscript([
|
|
'winsys/sw/gdi/SConscript',
|
|
])
|
|
|
|
|
|
#
|
|
# Frontends and targets
|
|
#
|
|
|
|
if not env['embedded']:
|
|
if env['x11']:
|
|
SConscript([
|
|
'frontends/glx/xlib/SConscript',
|
|
'targets/libgl-xlib/SConscript',
|
|
])
|
|
|
|
if env['platform'] == 'windows':
|
|
SConscript([
|
|
'frontends/wgl/SConscript',
|
|
'targets/libgl-gdi/SConscript',
|
|
])
|