Home | History | Annotate | Download | only in tests
      1 if HAVE_SHARED_GLAPI
      2 AM_CFLAGS = $(PTHREAD_CFLAGS)
      3 AM_CPPFLAGS = \
      4 	-I$(top_srcdir)/src/gtest/include \
      5 	-I$(top_srcdir)/src/mapi \
      6 	-I$(top_srcdir)/include
      7 
      8 TESTS = shared-glapi-test
      9 check_PROGRAMS = shared-glapi-test
     10 
     11 shared_glapi_test_SOURCES =			\
     12 	check_table.cpp
     13 
     14 shared_glapi_test_LDADD = \
     15 	$(top_builddir)/src/mapi/shared-glapi/libglapi.la \
     16 	$(top_builddir)/src/gtest/libgtest.la \
     17 	$(PTHREAD_LIBS)
     18 endif
     19