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