X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2FSConscript;h=93a490dca86782903981349a02d1ccacd20ed9fe;hb=4bb14aca293b12cbe4f2352fb11c20091876c1cf;hp=1eee8761adb111e654b6eb714020f6d5f53ba844;hpb=88625e6e651a9afc3ed0f62837b7316960c9b2ae;p=mesa.git diff --git a/src/SConscript b/src/SConscript index 1eee8761adb..93a490dca86 100644 --- a/src/SConscript +++ b/src/SConscript @@ -11,20 +11,28 @@ if env['hostonly']: # compilation Return() +SConscript('loader/SConscript') # 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/gen/SConscript') SConscript('mapi/glapi/SConscript') + +# Haiku C++ libGL dispatch (renderers depend on libgl) +if env['platform'] in ['haiku']: + SConscript('hgl/SConscript') + SConscript('mesa/SConscript') SConscript('mapi/vgapi/SConscript') if not env['embedded']: - SConscript('glx/SConscript') - SConscript('egl/main/SConscript') - SConscript('glu/sgi/SConscript') + if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'windows'): + SConscript('glx/SConscript') + if env['platform'] not in ['darwin', 'haiku', 'sunos']: + SConscript('egl/main/SConscript') if env['gles']: SConscript('mapi/shared-glapi/SConscript')