blob: 83626fd41c67f8a86cd5c76dfebc1e8987b773fb (
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
|
if HAVE_SHARED_GLAPI
AM_CFLAGS = $(PTHREAD_CFLAGS)
AM_CPPFLAGS = \
-I$(top_builddir)/src/gtest/include \
-I$(top_builddir)/src/mapi \
-I$(top_builddir)/src/mesa \
-I$(top_builddir)/src/glx \
-I$(top_builddir)/include \
$(X11_CFLAGS)
TESTS = glx-test
check_PROGRAMS = glx-test
glx_test_SOURCES = \
clientinfo_unittest.cpp \
create_context_unittest.cpp \
enum_sizes.cpp \
fake_glx_screen.cpp \
indirect_api.cpp
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
|