| [91f592] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | LINKEDCELLTESTSSOURCES = \
 | 
|---|
| [794bc8] | 5 |         ../LinkedCell/unittests/LinkedCellUnitTest.cpp \
 | 
|---|
| [fea945] | 6 |         ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.cpp \
 | 
|---|
| [d82961] | 7 |         ../LinkedCell/unittests/LinkedCell_ModelUnitTest.cpp \
 | 
|---|
| [5344e4] | 8 |         ../LinkedCell/unittests/LinkedCell_ViewUnitTest.cpp \
 | 
|---|
| [91f592] | 9 |         ../LinkedCell/unittests/linkedcellUnitTest.cpp
 | 
|---|
 | 10 | 
 | 
|---|
 | 11 | LINKEDCELLTESTSHEADERS = \
 | 
|---|
| [d82961] | 12 |         ../LinkedCell/PointCloudAdaptor.hpp \
 | 
|---|
| [794bc8] | 13 |         ../LinkedCell/unittests/LinkedCellUnitTest.hpp \
 | 
|---|
| [fea945] | 14 |         ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.hpp \
 | 
|---|
| [d82961] | 15 |         ../LinkedCell/unittests/LinkedCell_ModelUnitTest.hpp \
 | 
|---|
| [5344e4] | 16 |         ../LinkedCell/unittests/LinkedCell_ViewUnitTest.hpp \
 | 
|---|
| [91f592] | 17 |         ../LinkedCell/unittests/linkedcellUnitTest.hpp
 | 
|---|
 | 18 | 
 | 
|---|
 | 19 | LINKEDCELLTESTS = \
 | 
|---|
| [794bc8] | 20 |   LinkedCellUnitTest \
 | 
|---|
| [fea945] | 21 |   LinkedCell_ControllerUnitTest \
 | 
|---|
| [d82961] | 22 |   LinkedCell_ModelUnitTest \
 | 
|---|
| [5344e4] | 23 |   LinkedCell_ViewUnitTest \
 | 
|---|
| [91f592] | 24 |   linkedcellUnitTest
 | 
|---|
 | 25 | 
 | 
|---|
 | 26 | TESTS += $(LINKEDCELLTESTS)
 | 
|---|
 | 27 | check_PROGRAMS += $(LINKEDCELLTESTS) 
 | 
|---|
 | 28 | noinst_PROGRAMS += $(LINKEDCELLTESTS)
 | 
|---|
 | 29 | 
 | 
|---|
 | 30 | LINKEDCELLLIBS = \
 | 
|---|
 | 31 |         $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
 | 
|---|
 | 32 |         ${CodePatterns_LIBS} \
 | 
|---|
 | 33 |         $(BOOST_LIB)
 | 
|---|
 | 34 | 
 | 
|---|
 | 35 | linkedcellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 36 |         ../LinkedCell/unittests/linkedcellUnitTest.cpp \
 | 
|---|
 | 37 |         ../LinkedCell/unittests/linkedcellUnitTest.hpp
 | 
|---|
| [2ced6b] | 38 | linkedcellUnitTest_LDADD = \
 | 
|---|
 | 39 |         ../libMolecuilderUI.la \
 | 
|---|
| [eb0d77] | 40 |         ../libMolecuilder.la
 | 
|---|
 | 41 | if CONDJOBMARKET
 | 
|---|
 | 42 | linkedcellUnitTest_LDADD += \
 | 
|---|
 | 43 |         ../libMolecuilderJobs.la
 | 
|---|
 | 44 | endif
 | 
|---|
 | 45 | linkedcellUnitTest_LDADD += \
 | 
|---|
| [2ced6b] | 46 |         $(LINKEDCELLLIBS)
 | 
|---|
| [91f592] | 47 | 
 | 
|---|
| [794bc8] | 48 | LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 49 |         ../LinkedCell/unittests/LinkedCellUnitTest.cpp \
 | 
|---|
| [2ced6b] | 50 |         ../LinkedCell/unittests/LinkedCellUnitTest.hpp \
 | 
|---|
 | 51 |         ../LinkedCell/unittests/stubs/TesselPointStub.cpp
 | 
|---|
| [6b91e64] | 52 | LinkedCellUnitTest_LDADD = \
 | 
|---|
| [2ced6b] | 53 |         ../libMolecuilderLinkedCell.la \
 | 
|---|
| [6b91e64] | 54 |         $(LINKEDCELLLIBS)
 | 
|---|
| [794bc8] | 55 | 
 | 
|---|
| [fea945] | 56 | LinkedCell_ControllerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 57 |         ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.cpp \
 | 
|---|
| [9a5649] | 58 |         ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.hpp \
 | 
|---|
| [e215c1] | 59 |         ../LinkedCell/unittests/defs.hpp \
 | 
|---|
| [8f6e2a] | 60 |         stubs/AtomStub.cpp \
 | 
|---|
| [2ced6b] | 61 |         ../LinkedCell/unittests/stubs/AtomObserverStub.cpp \
 | 
|---|
 | 62 |         ../LinkedCell/unittests/stubs/ObserverBoxStub.cpp \
 | 
|---|
 | 63 |         ../LinkedCell/unittests/stubs/TesselPointStub.cpp \
 | 
|---|
| [ce81e76] | 64 |         ../LinkedCell/unittests/stubs/WorldTimeStub.cpp \
 | 
|---|
| [8f6e2a] | 65 |         stubs/WorldStub.cpp \
 | 
|---|
| [d66cb7] | 66 |         ../LinkedCell/PointCloudAdaptor.hpp \
 | 
|---|
 | 67 |         ../Box_BoundaryConditions.cpp \
 | 
|---|
 | 68 |         ../Box_BoundaryConditions.hpp
 | 
|---|
| [fea945] | 69 | LinkedCell_ControllerUnitTest_LDADD = \
 | 
|---|
| [2ced6b] | 70 |         ../libMolecuilderLinkedCell.la \
 | 
|---|
| [fea945] | 71 |         $(LINKEDCELLLIBS)
 | 
|---|
 | 72 | 
 | 
|---|
| [d82961] | 73 | LinkedCell_ModelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 74 |         ../LinkedCell/unittests/LinkedCell_ModelUnitTest.cpp \
 | 
|---|
| [e215c1] | 75 |         ../LinkedCell/unittests/LinkedCell_ModelUnitTest.hpp \
 | 
|---|
 | 76 |         ../LinkedCell/unittests/defs.hpp
 | 
|---|
| [6b91e64] | 77 | LinkedCell_ModelUnitTest_LDADD = \
 | 
|---|
| [2ced6b] | 78 |         ../libMolecuilderUI.la \
 | 
|---|
| [eb0d77] | 79 |         ../libMolecuilder.la
 | 
|---|
 | 80 | if CONDJOBMARKET
 | 
|---|
 | 81 | LinkedCell_ModelUnitTest_LDADD += \
 | 
|---|
 | 82 |         ../libMolecuilderJobs.la
 | 
|---|
 | 83 | endif
 | 
|---|
 | 84 | LinkedCell_ModelUnitTest_LDADD += \
 | 
|---|
| [6b91e64] | 85 |         $(LINKEDCELLLIBS)
 | 
|---|
| [794bc8] | 86 | 
 | 
|---|
| [5344e4] | 87 | LinkedCell_ViewUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 88 |         ../LinkedCell/unittests/LinkedCell_ViewUnitTest.cpp \
 | 
|---|
 | 89 |         ../LinkedCell/unittests/LinkedCell_ViewUnitTest.hpp \
 | 
|---|
| [e215c1] | 90 |         ../LinkedCell/unittests/defs.hpp \
 | 
|---|
| [5344e4] | 91 |         ../LinkedCell/PointCloudAdaptor.hpp
 | 
|---|
| [6b91e64] | 92 | LinkedCell_ViewUnitTest_LDADD = \
 | 
|---|
| [2ced6b] | 93 |         ../libMolecuilderUI.la \
 | 
|---|
| [eb0d77] | 94 |         ../libMolecuilder.la
 | 
|---|
 | 95 | if CONDJOBMARKET
 | 
|---|
 | 96 | LinkedCell_ViewUnitTest_LDADD += \
 | 
|---|
 | 97 |         ../libMolecuilderJobs.la
 | 
|---|
 | 98 | endif
 | 
|---|
 | 99 | LinkedCell_ViewUnitTest_LDADD += \
 | 
|---|
| [6b91e64] | 100 |         $(LINKEDCELLLIBS)
 | 
|---|
| [91f592] | 101 | 
 | 
|---|
| [fea945] | 102 | 
 | 
|---|
| [91f592] | 103 | #AUTOMAKE_OPTIONS = parallel-tests
 | 
|---|