source: src/UIElements/CommandLineUI/unittests/Makefile.am

Candidate_v1.6.1
Last change on this file was cb98f1, checked in by Frederik Heber <heber@…>, 8 years ago

FIX: One Definition Rule violation by mpqc.

  • mpqc.cc implements MPQCJob::Work() a second time (other in MPQCJob.cpp), this violates ODR and did so far work out of sheer luck. This was brough to surface by making a debian package.
  • Now, we extracted MPQCJob::Work() into a separate library.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES = \
5 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistencyUnitTest.cpp
6
7UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS = \
8 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistencyUnitTest.hpp
9
10UIELEMENTSCOMMANDLINEPARSERTESTS = \
11 CommandLineParser_ActionRegistry_ConsistencyUnitTest
12
13TESTS += $(UIELEMENTSCOMMANDLINEPARSERTESTS)
14check_PROGRAMS += $(UIELEMENTSCOMMANDLINEPARSERTESTS)
15noinst_PROGRAMS += $(UIELEMENTSCOMMANDLINEPARSERTESTS)
16
17CommandLineParser_ActionRegistry_ConsistencyUnitTest_SOURCES = \
18 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistencyUnitTest.cpp \
19 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistencyUnitTest.hpp
20CommandLineParser_ActionRegistry_ConsistencyUnitTest_LDADD = \
21 libUnitTest.la \
22 ../libMolecuilder.la \
23 ../libMolecuilderUI.la
24if CONDJOBMARKET
25CommandLineParser_ActionRegistry_ConsistencyUnitTest_LDADD += \
26 ../libMolecuilderJobs.la \
27 ../libMolecuilderJobs_Work.la
28endif
29CommandLineParser_ActionRegistry_ConsistencyUnitTest_LDADD += \
30 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
31 ${CodePatterns_LIBS} \
32 $(BOOST_LIB)
33
34#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.