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 | ../libMolecuilderUI.la
|
---|
28 |
|
---|
29 | ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
30 | ../Actions/unittests/ActionRegistryUnitTest.cpp \
|
---|
31 | ../Actions/unittests/ActionRegistryUnitTest.hpp
|
---|
32 | ActionRegistryUnitTest_LDADD = ${ACTIONLIBS}
|
---|
33 |
|
---|
34 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
35 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
---|
36 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
---|
37 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
38 | ActionSequenceUnitTest_LDADD = ${ACTIONLIBS}
|
---|
39 |
|
---|
40 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
41 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
---|
42 | ../Actions/unittests/AtomsCalculationUnitTest.hpp
|
---|
43 | AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS}
|
---|
44 |
|
---|
45 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
46 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
---|
47 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
|
---|
48 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
49 | ManipulateAtomsUnitTest_LDADD = ${ACTIONLIBS}
|
---|
50 |
|
---|
51 |
|
---|
52 |
|
---|
53 |
|
---|
54 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|