mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
scons: Don't build loader on Windows.
EGL was the last user. Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
f9b8c9299d
commit
47870d658b
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,8 @@ if env['hostonly']:
|
|||
# compilation
|
||||
Return()
|
||||
|
||||
SConscript('loader/SConscript')
|
||||
if env['platform'] != 'windows':
|
||||
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
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@ libloader_la_CPPFLAGS = \
|
|||
-I$(top_srcdir)/include \
|
||||
-I$(top_srcdir)/src \
|
||||
$(VISIBILITY_CFLAGS) \
|
||||
$(MSVC2013_COMPAT_CFLAGS) \
|
||||
$(LIBUDEV_CFLAGS)
|
||||
|
||||
libloader_la_SOURCES = $(LOADER_C_FILES)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue