source: ThirdParty/mpqc_open/src/lib/validate/math/isosurf/Makefile.am

stable v1.7.0
Last change on this file was 9259c3, checked in by Frederik Heber <frederik.heber@…>, 7 weeks ago

MPQC_OPEN: Fixes unit tests.

  • several unit tests programs actually need arguments. Those have been copnverted to autotest test cases.
  • half of these new test cases are expected to fail because modules cannot be properly loaded.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1ISOSURFTESTS = \
2 isotest
3
4# ?isotest crashes with mpi (also in original implementation)
5
6# TESTS += $(ISOSURFTESTS)
7
8### NOTE(FH): This requires a source file and thus needs to run as a autotest
9### and not as a check program.
10# check_PROGRAMS += $(ISOSURFTESTS)
11noinst_PROGRAMS += $(ISOSURFTESTS)
12
13ISOSURFLIBS = \
14 ../../bin/mpqc/libmolecuilder_mpqc.la ../../bin/mpqc/libmolecuilder_mpqc_extract_dummy.la
15# If we link the libs directly, then the linker throws out all unneeded symbols that would
16# be loaded dynamically. Out of laziness, we therefore simply link against our dynamic
17# library which is not pruned.
18# libSCisosurf.la libSCoptimize.la libSCscmat.la libSCgroup.la libSCrender.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
19
20isotest_SOURCES = \
21 math/isosurf/isotest.cc
22isotest_CPPFLAGS = $(AM_CPPFLAGS) -I$(abs_top_srcdir)/src/lib -DSRCDIR=\"$(abs_top_srcdir)/src/lib/math/isosurf\"
23# $(AM_CPPFLAGS:-fno-implicit-templates=)
24isotest_LDADD = \
25 $(ISOSURFLIBS)
26
27
28EXTRA_DIST += ./math/isosurf/isotest.in
Note: See TracBrowser for help on using the repository browser.