mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-12 13:58:31 +02:00
18 lines
563 B
Makefile
18 lines
563 B
Makefile
AM_CFLAGS = -I$(top_builddir)/src/glx -I$(top_builddir)/src/mapi -I$(top_builddir)/include \
|
|
$(X11_CFLAGS) $(GTEST_CFLAGS)
|
|
AM_CXXFLAGS = -I$(top_builddir)/src/glx -I$(top_builddir)/src/mapi -I$(top_builddir)/include \
|
|
$(X11_CFLAGS) $(GTEST_CFLAGS)
|
|
|
|
if HAVE_GTEST
|
|
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.a $(GTEST_LIBS) -lgtest_main
|
|
endif
|
|
endif
|