Makefile.am revision ae376f056791607017908e726b14ce1202edc33b
1AM_CPPFLAGS = \
2	-I$(top_builddir)/src/gtest/include \
3	-I$(top_builddir)/src/mapi \
4	-I$(top_builddir)/src/glx \
5	-I$(top_builddir)/include \
6	$(X11_CFLAGS)
7
8if HAVE_XCB_GLX_CREATE_CONTEXT
9TESTS = glx-test
10check_PROGRAMS = glx-test
11
12glx_test_SOURCES =			\
13	clientinfo_unittest.cpp		\
14	create_context_unittest.cpp	\
15	fake_glx_screen.cpp
16
17glx_test_LDADD = \
18	$(top_builddir)/src/glx/libglx.la \
19	$(top_builddir)/src/gtest/libgtest.la \
20	-lpthread
21
22endif
23