| 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 | ActionSequenceUnitTest_LDADD = ${ACTIONLIBS}
|
|---|
| 38 |
|
|---|
| 39 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 40 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
|---|
| 41 | ../Actions/unittests/AtomsCalculationUnitTest.hpp
|
|---|
| 42 | AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS}
|
|---|
| 43 |
|
|---|
| 44 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 45 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
|---|
| 46 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp
|
|---|
| 47 | ManipulateAtomsUnitTest_LDADD = ${ACTIONLIBS}
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|