1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | ACTIONTESTSSOURCES = \
|
---|
5 | ../Actions/unittests/ActionRegistryUnitTest.cpp \
|
---|
6 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
---|
7 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
---|
8 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp
|
---|
9 |
|
---|
10 | ACTIONTESTSHEADERS = \
|
---|
11 | ../Actions/unittests/ActionRegistryUnitTest.hpp \
|
---|
12 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
---|
13 | ../Actions/unittests/AtomsCalculationUnitTest.hpp \
|
---|
14 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp
|
---|
15 |
|
---|
16 | ACTIONTESTS = \
|
---|
17 | ActionRegistryUnitTest \
|
---|
18 | ActionSequenceUnitTest \
|
---|
19 | AtomsCalculationUnitTest \
|
---|
20 | ManipulateAtomsUnitTest
|
---|
21 |
|
---|
22 | TESTS += $(ACTIONTESTS)
|
---|
23 | check_PROGRAMS += $(ACTIONTESTS)
|
---|
24 | noinst_PROGRAMS += $(ACTIONTESTS)
|
---|
25 |
|
---|
26 | ACTIONLIBS = \
|
---|
27 | libUnitTest.la \
|
---|
28 | ../libMolecuilder.la \
|
---|
29 | ../libMolecuilderUI.la
|
---|
30 | if CONDJOBMARKET
|
---|
31 | ACTIONLIBS += \
|
---|
32 | ../libMolecuilderJobs.la
|
---|
33 | endif
|
---|
34 |
|
---|
35 | # note that DummyUI inherits Dialog which depends on boost/file_system ...
|
---|
36 |
|
---|
37 | ActionRegistryUnitTest_SOURCES = \
|
---|
38 | ../Actions/unittests/ActionRegistryUnitTest.cpp \
|
---|
39 | ../Actions/unittests/ActionRegistryUnitTest.hpp \
|
---|
40 | ../Parameters/unittests/stubs/ActionNameValidatorStub.cpp \
|
---|
41 | ../Parameters/unittests/stubs/BoxLengthValidatorStub.cpp \
|
---|
42 | ../Parameters/unittests/stubs/BoxVectorValidatorStub.cpp \
|
---|
43 | ../Parameters/unittests/stubs/TimeStepPresentValidatorStub.cpp
|
---|
44 | ActionRegistryUnitTest_LDADD = ${ACTIONLIBS} \
|
---|
45 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
46 |
|
---|
47 | ActionSequenceUnitTest_SOURCES = \
|
---|
48 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
---|
49 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
---|
50 | ../Actions/unittests/stubs/DummyUI.hpp \
|
---|
51 | ../Parameters/unittests/stubs/ActionNameValidatorStub.cpp \
|
---|
52 | ../Parameters/unittests/stubs/BoxLengthValidatorStub.cpp \
|
---|
53 | ../Parameters/unittests/stubs/BoxVectorValidatorStub.cpp \
|
---|
54 | ../Parameters/unittests/stubs/TimeStepPresentValidatorStub.cpp
|
---|
55 | ActionSequenceUnitTest_LDADD = \
|
---|
56 | ${ACTIONLIBS} \
|
---|
57 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
58 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
59 |
|
---|
60 | AtomsCalculationUnitTest_SOURCES = \
|
---|
61 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
---|
62 | ../Actions/unittests/AtomsCalculationUnitTest.hpp
|
---|
63 | AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS}
|
---|
64 |
|
---|
65 | ManipulateAtomsUnitTest_SOURCES = \
|
---|
66 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
---|
67 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
|
---|
68 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
69 | ManipulateAtomsUnitTest_LDADD = \
|
---|
70 | ${ACTIONLIBS} \
|
---|
71 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
72 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
73 |
|
---|
74 |
|
---|
75 |
|
---|
76 |
|
---|
77 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|