[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 \
|
---|
| 33 | ../Actions/unittests/ActionRegistryUnitTest.hpp
|
---|
| 34 | ActionRegistryUnitTest_LDADD = ${ACTIONLIBS}
|
---|
[deddf6] | 35 |
|
---|
[f7c0c4] | 36 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[455573] | 37 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
---|
[fdcd1b] | 38 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
---|
| 39 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
[f08ae7] | 40 | ActionSequenceUnitTest_LDADD = \
|
---|
| 41 | ${ACTIONLIBS} \
|
---|
| 42 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 43 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
[f7c0c4] | 44 |
|
---|
[3c8e8b] | 45 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[455573] | 46 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
---|
| 47 | ../Actions/unittests/AtomsCalculationUnitTest.hpp
|
---|
| 48 | AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS}
|
---|
[3c8e8b] | 49 |
|
---|
[efd61b] | 50 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[455573] | 51 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
---|
[fdcd1b] | 52 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
|
---|
| 53 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
[f08ae7] | 54 | ManipulateAtomsUnitTest_LDADD = \
|
---|
| 55 | ${ACTIONLIBS} \
|
---|
| 56 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 57 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
[efd61b] | 58 |
|
---|
| 59 |
|
---|
[f7c0c4] | 60 |
|
---|
[6d2207] | 61 |
|
---|
[deddf6] | 62 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|