Makefile.am revision 3c22f7941288699e040c8841e57aa81563616c55
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	enum_sizes.cpp			\
16	fake_glx_screen.cpp		\
17	indirect_api.cpp
18
19glx_test_LDADD = \
20	$(top_builddir)/src/glx/libglx.la \
21	$(top_builddir)/src/gtest/libgtest.la \
22	-lpthread
23
24endif
25