1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | LINKEDCELLTESTSSOURCES = \
|
---|
5 | ../LinkedCell/unittests/LinkedCellUnitTest.cpp \
|
---|
6 | ../LinkedCell/unittests/LinkedCell_ModelUnitTest.cpp \
|
---|
7 | ../LinkedCell/unittests/LinkedCell_ViewUnitTest.cpp \
|
---|
8 | ../LinkedCell/unittests/linkedcellUnitTest.cpp
|
---|
9 |
|
---|
10 | LINKEDCELLTESTSHEADERS = \
|
---|
11 | ../LinkedCell/PointCloudAdaptor.hpp \
|
---|
12 | ../LinkedCell/unittests/LinkedCellUnitTest.hpp \
|
---|
13 | ../LinkedCell/unittests/LinkedCell_ModelUnitTest.hpp \
|
---|
14 | ../LinkedCell/unittests/LinkedCell_ViewUnitTest.hpp \
|
---|
15 | ../LinkedCell/unittests/linkedcellUnitTest.hpp
|
---|
16 |
|
---|
17 | LINKEDCELLTESTS = \
|
---|
18 | LinkedCellUnitTest \
|
---|
19 | LinkedCell_ModelUnitTest \
|
---|
20 | LinkedCell_ViewUnitTest \
|
---|
21 | linkedcellUnitTest
|
---|
22 |
|
---|
23 |
|
---|
24 | TESTS += $(LINKEDCELLTESTS)
|
---|
25 | check_PROGRAMS += $(LINKEDCELLTESTS)
|
---|
26 | noinst_PROGRAMS += $(LINKEDCELLTESTS)
|
---|
27 |
|
---|
28 | LINKEDCELLLIBS = \
|
---|
29 | ../libMolecuilderUI.la \
|
---|
30 | ../libMolecuilder.la \
|
---|
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
|
---|
38 | linkedcellUnitTest_LDADD = $(LINKEDCELLLIBS)
|
---|
39 |
|
---|
40 | LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
41 | ../LinkedCell/unittests/LinkedCellUnitTest.cpp \
|
---|
42 | ../LinkedCell/unittests/LinkedCellUnitTest.hpp
|
---|
43 | LinkedCellUnitTest_LDADD = \
|
---|
44 | ../libMolecuilderLinkedCell_refactored.la \
|
---|
45 | $(LINKEDCELLLIBS)
|
---|
46 |
|
---|
47 | LinkedCell_ModelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
48 | ../LinkedCell/unittests/LinkedCell_ModelUnitTest.cpp \
|
---|
49 | ../LinkedCell/unittests/LinkedCell_ModelUnitTest.hpp \
|
---|
50 | ../LinkedCell/PointCloudAdaptor.hpp
|
---|
51 | LinkedCell_ModelUnitTest_LDADD = \
|
---|
52 | ../libMolecuilderLinkedCell_refactored.la \
|
---|
53 | $(LINKEDCELLLIBS)
|
---|
54 |
|
---|
55 | LinkedCell_ViewUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
56 | ../LinkedCell/unittests/LinkedCell_ViewUnitTest.cpp \
|
---|
57 | ../LinkedCell/unittests/LinkedCell_ViewUnitTest.hpp \
|
---|
58 | ../LinkedCell/PointCloudAdaptor.hpp
|
---|
59 | LinkedCell_ViewUnitTest_LDADD = \
|
---|
60 | ../libMolecuilderLinkedCell_refactored.la \
|
---|
61 | $(LINKEDCELLLIBS)
|
---|
62 |
|
---|
63 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|