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