mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-18 11:38:06 +02:00
22 lines
483 B
Makefile
22 lines
483 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_builddir)/src/gtest/include \
|
|
-I$(top_builddir)/src/mapi \
|
|
-I$(top_builddir)/src/glx \
|
|
-I$(top_builddir)/include \
|
|
$(X11_CFLAGS)
|
|
|
|
if HAVE_XCB_GLX_CREATE_CONTEXT
|
|
TESTS = glx_unittest
|
|
check_PROGRAMS = glx_unittest
|
|
|
|
glx_unittest_SOURCES = \
|
|
clientinfo_unittest.cpp \
|
|
create_context_unittest.cpp \
|
|
fake_glx_screen.cpp
|
|
|
|
glx_unittest_LDADD = \
|
|
$(top_builddir)/src/glx/libglx.la \
|
|
$(top_builddir)/src/gtest/libgtest.la \
|
|
-lpthread
|
|
|
|
endif
|