[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 = \
|
---|
[e9e86f] | 27 | libUnitTest.la \
|
---|
[748fc7] | 28 | ../libMolecuilder.la \
|
---|
[455573] | 29 | ../libMolecuilderUI.la
|
---|
[eb0d77] | 30 | if CONDJOBMARKET
|
---|
| 31 | ACTIONLIBS += \
|
---|
[cb98f1] | 32 | ../libMolecuilderJobs.la \
|
---|
| 33 | ../libMolecuilderJobs_Work.la
|
---|
[eb0d77] | 34 | endif
|
---|
[deddf6] | 35 |
|
---|
[f08ae7] | 36 | # note that DummyUI inherits Dialog which depends on boost/file_system ...
|
---|
| 37 |
|
---|
[e9e86f] | 38 | ActionRegistryUnitTest_SOURCES = \
|
---|
[455573] | 39 | ../Actions/unittests/ActionRegistryUnitTest.cpp \
|
---|
[8453b3] | 40 | ../Actions/unittests/ActionRegistryUnitTest.hpp \
|
---|
[ab2ebe] | 41 | ../Parameters/unittests/stubs/ActionNameValidatorStub.cpp \
|
---|
[361805] | 42 | ../Parameters/unittests/stubs/BoxLengthValidatorStub.cpp \
|
---|
[4d4777] | 43 | ../Parameters/unittests/stubs/BoxVectorValidatorStub.cpp \
|
---|
| 44 | ../Parameters/unittests/stubs/TimeStepPresentValidatorStub.cpp
|
---|
[e9e86f] | 45 | ActionRegistryUnitTest_LDADD = ${ACTIONLIBS} \
|
---|
| 46 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
[deddf6] | 47 |
|
---|
[e9e86f] | 48 | ActionSequenceUnitTest_SOURCES = \
|
---|
[455573] | 49 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
---|
[fdcd1b] | 50 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
---|
[8453b3] | 51 | ../Actions/unittests/stubs/DummyUI.hpp \
|
---|
[ab2ebe] | 52 | ../Parameters/unittests/stubs/ActionNameValidatorStub.cpp \
|
---|
[361805] | 53 | ../Parameters/unittests/stubs/BoxLengthValidatorStub.cpp \
|
---|
[4d4777] | 54 | ../Parameters/unittests/stubs/BoxVectorValidatorStub.cpp \
|
---|
| 55 | ../Parameters/unittests/stubs/TimeStepPresentValidatorStub.cpp
|
---|
[f08ae7] | 56 | ActionSequenceUnitTest_LDADD = \
|
---|
| 57 | ${ACTIONLIBS} \
|
---|
| 58 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 59 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
[f7c0c4] | 60 |
|
---|
[e9e86f] | 61 | AtomsCalculationUnitTest_SOURCES = \
|
---|
[455573] | 62 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
---|
| 63 | ../Actions/unittests/AtomsCalculationUnitTest.hpp
|
---|
[53ef0d4] | 64 | AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS} \
|
---|
| 65 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
[3c8e8b] | 66 |
|
---|
[e9e86f] | 67 | ManipulateAtomsUnitTest_SOURCES = \
|
---|
[455573] | 68 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
---|
[fdcd1b] | 69 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
|
---|
| 70 | ../Actions/unittests/stubs/DummyUI.hpp
|
---|
[f08ae7] | 71 | ManipulateAtomsUnitTest_LDADD = \
|
---|
| 72 | ${ACTIONLIBS} \
|
---|
| 73 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 74 | $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
|
---|
[efd61b] | 75 |
|
---|
| 76 |
|
---|
[f7c0c4] | 77 |
|
---|
[6d2207] | 78 |
|
---|
[deddf6] | 79 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|