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 | # note that DummyUI inherits Dialog which depends on boost/file_system ...
|
---|
30 |
|
---|
31 | ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
32 | ../Actions/unittests/ActionRegistryUnitTest.cpp \
|
---|
33 | ../Actions/unittests/ActionRegistryUnitTest.hpp
|
---|
34 | ActionRegistryUnitTest_LDADD = ${ACTIONLIBS}
|
---|
35 |
|
---|
36 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
37 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
---|
38 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
---|
39 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
40 | ActionSequenceUnitTest_LDADD = \
|
---|
41 | ${ACTIONLIBS} \
|
---|
42 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
43 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
44 |
|
---|
45 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
46 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
---|
47 | ../Actions/unittests/AtomsCalculationUnitTest.hpp
|
---|
48 | AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS}
|
---|
49 |
|
---|
50 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
51 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
---|
52 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
|
---|
53 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
54 | ManipulateAtomsUnitTest_LDADD = \
|
---|
55 | ${ACTIONLIBS} \
|
---|
56 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
57 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
58 |
|
---|
59 |
|
---|
60 |
|
---|
61 |
|
---|
62 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|