mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-23 08:38:08 +02:00
Otherwise it won't be picked in the tarball and the build will fail.
Fixes: 533b3530c1 ("direct-to-native-GL for GLX clients on Cygwin
("Windows-DRI")")
Cc: "13.0" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com>
Reviewed-by: Jon Turney <jon.turney@dronecode.org.uk>
32 lines
848 B
Makefile
32 lines
848 B
Makefile
noinst_LTLIBRARIES = libwindowsdri.la libwindowsglx.la
|
|
|
|
# protocol defines for the Windows-DRI server extension
|
|
windowsdriincludedir = $(includedir)/X11/extensions
|
|
windowsdriinclude_HEADERS = windowsdriconst.h windowsdristr.h
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = windowsdriproto.pc
|
|
|
|
# library for using the Windows-DRI server extension
|
|
libwindowsdri_la_SOURCES = xwindowsdri.c xwindowsdri.h
|
|
|
|
# native rendering GL for windows
|
|
libwindowsglx_la_SOURCES = \
|
|
windowsgl.c \
|
|
windowsgl.h \
|
|
windowsgl_internal.h \
|
|
windows_drawable.c \
|
|
wgl.c \
|
|
wgl.h
|
|
|
|
libwindowsglx_la_CFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/glx \
|
|
-I$(top_srcdir)/src/mapi \
|
|
-I$(top_srcdir)/src/mapi/glapi \
|
|
-I$(top_builddir)/src/mapi/glapi \
|
|
$(VISIBILITY_CFLAGS) \
|
|
$(SHARED_GLAPI_CFLAGS) \
|
|
$(DEFINES) \
|
|
$(X11_INCLUDES)
|