source: src/Dynamics/unittests/Makefile.am@ d3d964

ForceAnnealing_with_BondGraph_continued
Last change on this file since d3d964 was d3d964, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Added unit tests for BondVectors.

  • Added tests on up-to-date internal map and calculating weights.
  • Property mode set to 100644
File size: 920 bytes
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4DYNAMICSTESTSSOURCES = \
5 ../Dynamics/unittests/BondVectorsUnitTest.cpp
6
7DYNAMICSTESTSHEADERS = \
8 ../Dynamics/unittests/BondVectorsUnitTest.hpp
9
10DYNAMICSTESTS = \
11 BondVectorsUnitTest
12
13TESTS += $(DYNAMICSTESTS)
14check_PROGRAMS += $(DYNAMICSTESTS)
15noinst_PROGRAMS += $(DYNAMICSTESTS)
16
17DYNAMICSLIBS = \
18 libUnitTest.la \
19 ../libMolecuilder.la \
20 ../libMolecuilderUI.la
21if CONDJOBMARKET
22DYNAMICSLIBS += \
23 ../libMolecuilderJobs.la \
24 ../libMolecuilderJobs_Work.la
25endif
26DYNAMICSLIBS += \
27 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
28 ${CodePatterns_LIBS} \
29 $(BOOST_LIB)
30
31BondVectorsUnitTest_SOURCES = \
32 ../Dynamics/unittests/BondVectorsUnitTest.cpp \
33 ../Dynamics/unittests/BondVectorsUnitTest.hpp
34BondVectorsUnitTest_LDADD = $(DYNAMICSLIBS)
35
36
37#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.