X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=blobdiff_plain;f=src%2FSConscript;h=ba6be0be1a0a1b916c53ec08669f9b6a8c07f221;hp=cd4896ada401935a25d97d798773981f86fe7b04;hb=64ae209d50e2d28f46a3f0c6880e40e94ba23569;hpb=a8238bb08a95e7ea4430450c304a6bee210df1a6 diff --git a/src/SConscript b/src/SConscript index cd4896ada40..ba6be0be1a0 100644 --- a/src/SConscript +++ b/src/SConscript @@ -1,13 +1,36 @@ Import('*') + +if env['platform'] == 'windows': + SConscript('getopt/SConscript') + SConscript('glsl/SConscript') -SConscript('gallium/SConscript') -if 'mesa' in env['statetrackers']: - SConscript('mesa/SConscript') +if env['hostonly']: + # We are just compiling the things necessary on the host for cross + # compilation + Return() + + +# When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not +# used. libgl-xlib and libgl-gdi adapt themselves to use the targets defined +# in mapi/glapi-shared/SConscript. mesa/SConscript also adapts itself to +# enable OpenGL ES support. +SConscript('mapi/glapi/SConscript') +SConscript('mesa/SConscript') -SConscript('gallium/winsys/SConscript') +SConscript('mapi/vgapi/SConscript') + +if not env['embedded']: + if env['platform'] not in ['windows', 'darwin', 'haiku']: + SConscript('glx/SConscript') + if env['platform'] not in ['darwin', 'haiku']: + SConscript('egl/main/SConscript') + if env['platform'] not in ['darwin']: + SConscript('glu/sgi/SConscript') + + if env['gles']: + SConscript('mapi/shared-glapi/SConscript') + +SConscript('gallium/SConscript') -if platform != 'embedded': - SConscript('glut/glx/SConscript') - SConscript('glew/SConscript')