source: ThirdParty/CodePatterns/src/Helpers/unittests/Makefile.am@ 7516f6

Action_Thermostats Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 7516f6 was 41e8e2, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '084729c5923f0123e695fbe2548b393288c1f13d' as 'ThirdParty/CodePatterns'

  • Property mode set to 100644
File size: 3.2 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4# NOTE that all paths are relative to ./src (because we get included there!)
5
6TESTS += \
7 AssertUnitTest \
8 ChronosUnitTest \
9 InfoUnitTest \
10 IteratorAdaptorsUnitTest \
11 LogUnitTest \
12 RangeUnitTest
13
14TESTSOURCES += \
15 ../Helpers/unittests/AssertUnitTest.cpp \
16 ../Helpers/unittests/ChronosUnitTest.cpp \
17 ../Helpers/unittests/InfoUnitTest.cpp \
18 ../Helpers/unittests/LogUnitTest.cpp \
19 ../Helpers/unittests/RangeUnitTest.cpp
20
21TESTHEADERS += \
22 ../Helpers/unittests/AssertUnitTest.hpp \
23 ../Helpers/unittests/ChronosUnitTest.hpp \
24 ../Helpers/unittests/InfoUnitTest.hpp \
25 ../Helpers/unittests/LogUnitTest.hpp \
26 ../Helpers/unittests/RangeUnitTest.hpp
27
28check_PROGRAMS += $(TESTS)
29noinst_PROGRAMS += $(TESTS)
30
31AssertUnitTest_SOURCES = UnitTestMain.cpp \
32 ../Helpers/unittests/AssertUnitTest.cpp \
33 ../Helpers/unittests/AssertUnitTest.hpp
34#nodist_AssertUnitTest_SOURCES =
35AssertUnitTest_LDADD = \
36 ../Helpers/libcodepatterns-Helpers-debug.la
37
38ChronosUnitTest_SOURCES = UnitTestMain.cpp \
39 ../Helpers/unittests/ChronosUnitTest.cpp \
40 ../Helpers/unittests/ChronosUnitTest.hpp \
41 ../Helpers/unittests/stubs/InfoStub.cpp
42nodist_ChronosUnitTest_SOURCES = \
43 $(top_srcdir)/src/CodePatterns/Assert.hpp \
44 $(top_srcdir)/src/CodePatterns/MemDebug.hpp \
45 $(top_srcdir)/src/CodePatterns/Chronos.hpp \
46 $(top_srcdir)/src/CodePatterns/Info.hpp
47ChronosUnitTest_LDADD = \
48 ../Helpers/libcodepatterns-Helpers-debug.la \
49 $(LIBRT)
50
51InfoUnitTest_SOURCES = UnitTestMain.cpp \
52 ../Helpers/unittests/InfoUnitTest.cpp \
53 ../Helpers/unittests/InfoUnitTest.hpp \
54 ../Helpers/unittests/stubs/ChronosStub.cpp \
55 ../Helpers/unittests/stubs/errorloggerStub.cpp \
56 ../Helpers/unittests/stubs/LogStub.cpp \
57 ../Helpers/unittests/stubs/loggerStub.cpp
58nodist_InfoUnitTest_SOURCES = \
59 $(top_srcdir)/src/CodePatterns/Assert.hpp \
60 $(top_srcdir)/src/CodePatterns/Chronos.hpp \
61 $(top_srcdir)/src/CodePatterns/errorlogger.hpp \
62 $(top_srcdir)/src/CodePatterns/Info.hpp \
63 $(top_srcdir)/src/CodePatterns/Log.hpp \
64 $(top_srcdir)/src/CodePatterns/logger.hpp \
65 $(top_srcdir)/src/CodePatterns/MemDebug.hpp
66InfoUnitTest_LDADD = \
67 ../Helpers/libcodepatterns-Helpers-debug.la
68
69IteratorAdaptorsUnitTest_SOURCES = UnitTestMain.cpp \
70 ../Helpers/unittests/IteratorAdaptorsUnitTest.cpp \
71 ../Helpers/unittests/IteratorAdaptorsUnitTest.hpp
72nodist_IteratorAdaptorsUnitTest_SOURCES = \
73 $(top_srcdir)/src/CodePatterns/IteratorAdaptors.hpp
74IteratorAdaptorsUnitTest_LDADD = \
75 ../Helpers/libcodepatterns-Helpers-debug.la
76
77LogUnitTest_SOURCES = UnitTestMain.cpp \
78 ../Helpers/unittests/LogUnitTest.cpp \
79 ../Helpers/unittests/LogUnitTest.hpp
80nodist_LogUnitTest_SOURCES = \
81 $(top_srcdir)/src/CodePatterns/Assert.hpp \
82 $(top_srcdir)/src/CodePatterns/errorlogger.hpp \
83 $(top_srcdir)/src/CodePatterns/Log.hpp \
84 $(top_srcdir)/src/CodePatterns/logger.hpp \
85 $(top_srcdir)/src/CodePatterns/MemDebug.hpp
86LogUnitTest_LDADD = \
87 ../Helpers/libcodepatterns-Helpers-debug.la
88
89RangeUnitTest_SOURCES = UnitTestMain.cpp \
90 ../Helpers/unittests/RangeUnitTest.cpp \
91 ../Helpers/unittests/RangeUnitTest.hpp
92#nodist_RangeUnitTest_SOURCES =
93RangeUnitTest_LDADD = \
94 ../Helpers/libcodepatterns-Helpers-debug.la
95
96
97#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.