source: ThirdParty/mpqc_open/src/lib/validate/util/options/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: 816 bytes
Line 
1OPTIONSTESTS = \
2 sample
3
4### TODO(FH): `sample` requires options and environment variables for proper
5### testing. Hence, this needs an autotest test case, not just automake.
6# TESTS += $(OPTIONSTESTS)
7# check_PROGRAMS += $(OPTIONSTESTS)
8noinst_PROGRAMS += $(OPTIONSTESTS)
9
10OPTIONSLIBS = \
11 ../../bin/mpqc/libmolecuilder_mpqc.la ../../bin/mpqc/libmolecuilder_mpqc_extract_dummy.la
12# If we link the libs directly, then the linker throws out all unneeded symbols that would
13# be loaded dynamically. Out of laziness, we therefore simply link against our dynamic
14# library which is not pruned.
15# libSCoptions.la
16
17sample_SOURCES = \
18 util/options/README.cc
19sample_CPPFLAGS = $(AM_CPPFLAGS) -I$(abs_top_srcdir)/src/lib -DSRCDIR=\"$(abs_top_srcdir)/src/lib/math/optimize\"
20sample_LDADD = \
21 $(OPTIONSLIBS)
22
23
Note: See TracBrowser for help on using the repository browser.