source: src/Filling/unittests/Makefile.am@ a8961d

IndependentFragmentGrids_Sole_NN_Calculation
Last change on this file since a8961d was 748fc7, checked in by Frederik Heber <heber@…>, 11 years ago

libMolecuilder is now a shared library.

  • linking error Vector::IsZero(double) with molecuilder(gui), related to libMolecuilderShapes was the root cause for this change. Again, it was not deducible why this error occured:
  • probably (me tired of these obfuscated linker errors ...) faulted because libMolecuilder is convenience lib while libMolecuilderUI and ..QtUI are shared and deps did not get passed along properly (by libtool) (e.g. ldd showed libMolecuilderShapes prior to libLinearAlgebra, containing said function Vector::IsZero(double), but I cannot influence this ordering and it should not even matter (dynamic linking).)
  • some cleanup in builder_init.cpp (no more loading of BondGraph from file named "\n".
  • TESTFIX: libMolecuilder.so added to all unittests, required for e.g. World::purgeInstance() ... and sometimes added libMolecuilderUI.so because libMolecuilder pulled them in due to static entities ... sigh.
  • removed all src object files from unittest .._SOURCES. This caused distclean faults "thanks" to new subdir-objects (automake).
  • Property mode set to 100644
File size: 3.0 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FILLINGTESTSSOURCES = \
5 ../Filling/unittests/ClusterUnitTest.cpp \
6 ../Filling/unittests/FillerUnitTest.cpp \
7 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
8 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
9 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
10 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
11 ../Filling/unittests/Ops_FillPredicateUnitTest.cpp
12
13FILLINGTESTSHEADERS = \
14 ../Filling/unittests/ClusterUnitTest.hpp \
15 ../Filling/unittests/FillerUnitTest.hpp \
16 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp \
17 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp \
18 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp \
19 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp \
20 ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
21
22FILLINGTESTS = \
23 ClusterUnitTest \
24 FillerUnitTest \
25 IsInsideDomain_FillPredicateUnitTest \
26 IsInsideSurface_FillPredicateUnitTest \
27 IsValidInDomain_FillPredicateUnitTest \
28 IsVoidNode_FillPredicateUnitTest \
29 Ops_FillPredicateUnitTest
30
31TESTS += $(FILLINGTESTS)
32check_PROGRAMS += $(FILLINGTESTS)
33noinst_PROGRAMS += $(FILLINGTESTS)
34
35FILLINGLIBS = \
36 libUnitTest.la \
37 ../libMolecuilder.la \
38 ../libMolecuilderFilling.la \
39 ../libMolecuilderShapes.la \
40 ../libMolecuilderUI.la
41if CONDJOBMARKET
42FILLINGLIBS += \
43 ../libMolecuilderJobs.la
44endif
45FILLINGLIBS += \
46 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
47 ${CodePatterns_LIBS} \
48 $(BOOST_LIB)
49
50ClusterUnitTest_SOURCES = \
51 ../Filling/unittests/ClusterUnitTest.cpp \
52 ../Filling/unittests/ClusterUnitTest.hpp
53ClusterUnitTest_LDADD = $(FILLINGLIBS)
54
55FillerUnitTest_SOURCES = \
56 ../Filling/unittests/FillerUnitTest.cpp \
57 ../Filling/unittests/FillerUnitTest.hpp
58FillerUnitTest_LDADD = $(FILLINGLIBS)
59
60IsInsideDomain_FillPredicateUnitTest_SOURCES = \
61 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
62 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp
63IsInsideDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
64
65IsInsideSurface_FillPredicateUnitTest_SOURCES = \
66 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
67 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp
68IsInsideSurface_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
69
70IsValidInDomain_FillPredicateUnitTest_SOURCES = \
71 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
72 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp
73IsValidInDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
74
75IsVoidNode_FillPredicateUnitTest_SOURCES = \
76 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
77 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp
78IsVoidNode_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
79
80Ops_FillPredicateUnitTest_SOURCES = \
81 ../Filling/unittests/Ops_FillPredicateUnitTest.cpp \
82 ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
83Ops_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
84
85
86#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.