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