blob: d1d2f03827ae4bff086161a7455d704a36ac80bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
if !HAVE_SHARED_GLAPI
AM_CPPFLAGS = \
-I$(top_builddir)/src/gtest/include \
-I$(top_builddir)/src/mapi \
-I$(top_builddir)/include
TESTS = glapi-test
check_PROGRAMS = glapi-test
glapi_test_SOURCES = \
check_table.cpp
glapi_test_LDADD = \
$(top_builddir)/src/mapi/glapi/libglapi.la \
$(top_builddir)/src/gtest/libgtest.la \
-lpthread
endif
|