summaryrefslogtreecommitdiff
path: root/src/glx/tests/Makefile.am
blob: 07173164f234b291bc9b9852d1027c4576302b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
if HAVE_SHARED_GLAPI
AM_CFLAGS = $(PTHREAD_CFLAGS)
AM_CPPFLAGS = \
	-I$(top_srcdir)/src/gtest/include \
	-I$(top_srcdir)/src \
	-I$(top_srcdir)/src/mapi \
	-I$(top_srcdir)/src/mesa \
	-I$(top_builddir)/src/glx \
	-I$(top_srcdir)/src/glx \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/include/GL/internal \
	$(DEFINES) \
	$(LIBDRM_CFLAGS) \
	$(X11_INCLUDES)

TESTS = glx-test dispatch-index-check
check_PROGRAMS = glx-test
EXTRA_DIST = dispatch-index-check meson.build

glx_test_SOURCES =			\
	clientinfo_unittest.cpp		\
	create_context_unittest.cpp	\
	enum_sizes.cpp			\
	fake_glx_screen.cpp		\
	fake_glx_screen.h		\
	indirect_api.cpp		\
	mock_xdisplay.h			\
	query_renderer_unittest.cpp

if HAVE_DRI2
glx_test_SOURCES += \
	query_renderer_implementation_unittest.cpp
endif

glx_test_LDADD = \
	$(top_builddir)/src/glx/libglx.la \
	$(top_builddir)/src/gtest/libgtest.la \
	$(top_builddir)/src/mapi/shared-glapi/libglapi.la \
	$(PTHREAD_LIBS)
endif