| [deddf6] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| [455573] | 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 = \
|
|---|
| [f7c0c4] | 17 | ActionRegistryUnitTest \
|
|---|
| [3c8e8b] | 18 | ActionSequenceUnitTest \
|
|---|
| [efd61b] | 19 | AtomsCalculationUnitTest \
|
|---|
| 20 | ManipulateAtomsUnitTest
|
|---|
| [deddf6] | 21 |
|
|---|
| [455573] | 22 | TESTS += $(ACTIONTESTS)
|
|---|
| 23 | check_PROGRAMS += $(ACTIONTESTS)
|
|---|
| 24 | noinst_PROGRAMS += $(ACTIONTESTS)
|
|---|
| [deddf6] | 25 |
|
|---|
| [455573] | 26 | ACTIONLIBS = \
|
|---|
| 27 | ../libMolecuilderUI.la
|
|---|
| [deddf6] | 28 |
|
|---|
| [f08ae7] | 29 | # note that DummyUI inherits Dialog which depends on boost/file_system ...
|
|---|
| 30 |
|
|---|
| [deddf6] | 31 | ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| [455573] | 32 | ../Actions/unittests/ActionRegistryUnitTest.cpp \
|
|---|
| [8453b3] | 33 | ../Actions/unittests/ActionRegistryUnitTest.hpp \
|
|---|
| 34 | ../Parameters/unittests/stubs/BoxLengthValidatorStub.cpp
|
|---|
| [455573] | 35 | ActionRegistryUnitTest_LDADD = ${ACTIONLIBS}
|
|---|
| [deddf6] | 36 |
|
|---|
| [f7c0c4] | 37 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| [455573] | 38 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
|---|
| [fdcd1b] | 39 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
|---|
| [8453b3] | 40 | ../Actions/unittests/stubs/DummyUI.hpp \
|
|---|
| 41 | ../Parameters/unittests/stubs/BoxLengthValidatorStub.cpp
|
|---|
| [f08ae7] | 42 | ActionSequenceUnitTest_LDADD = \
|
|---|
| 43 | ${ACTIONLIBS} \
|
|---|
| 44 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
|---|
| 45 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
|---|
| [f7c0c4] | 46 |
|
|---|
| [3c8e8b] | 47 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| [455573] | 48 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
|---|
| 49 | ../Actions/unittests/AtomsCalculationUnitTest.hpp
|
|---|
| 50 | AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS}
|
|---|
| [3c8e8b] | 51 |
|
|---|
| [efd61b] | 52 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| [455573] | 53 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
|---|
| [fdcd1b] | 54 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
|
|---|
| 55 | ../Actions/unittests/stubs/DummyUI.hpp
|
|---|
| [f08ae7] | 56 | ManipulateAtomsUnitTest_LDADD = \
|
|---|
| 57 | ${ACTIONLIBS} \
|
|---|
| 58 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
|---|
| 59 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
|---|
| [efd61b] | 60 |
|
|---|
| 61 |
|
|---|
| [f7c0c4] | 62 |
|
|---|
| [6d2207] | 63 |
|
|---|
| [deddf6] | 64 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|