1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
EXTRA_DIST = CMakeLists.txt
check_PROGRAMS =
TESTS =
GRIDDIM=2
if ALBERTA
# test program will return the special exit code 77 ("skipped") if alberta is
# not available
#TESTS += test-alberta3d-refine
check_PROGRAMS += test-alberta3d-refine
test_alberta3d_refine_SOURCES = test-alberta3d-refine.cc
test_alberta3d_refine_CPPFLAGS = $(AM_CPPFLAGS) \
$(ALBERTA3D_CPPFLAGS)
test_alberta3d_refine_LDFLAGS = $(AM_LDFLAGS) \
$(ALBERTA3D_LDFLAGS)
test_alberta3d_refine_LDADD = \
$(ALBERTA3D_LIBS) \
$(LDADD)
endif
include $(top_srcdir)/am/global-rules
|