# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab DESCRIPTORTESTSSOURCES = \ ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \ ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp DESCRIPTORTESTSHEADERS = \ ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \ ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp DESCRIPTORTESTS = \ AtomDescriptorUnitTest \ MoleculeDescriptorTest TESTS += $(DESCRIPTORTESTS) check_PROGRAMS += $(DESCRIPTORTESTS) noinst_PROGRAMS += $(DESCRIPTORTESTS) DESCRIPTORLIBS = \ libUnitTest.la \ ../libMolecuilder.la \ ../libMolecuilderUI.la if CONDJOBMARKET DESCRIPTORLIBS += \ ../libMolecuilderJobs.la endif DESCRIPTORLIBS += \ $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) AtomDescriptorUnitTest_SOURCES = \ ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \ ../Descriptors/unittests/AtomDescriptorUnitTest.hpp AtomDescriptorUnitTest_LDADD = ${DESCRIPTORLIBS} MoleculeDescriptorTest_SOURCES = \ ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \ ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp MoleculeDescriptorTest_LDADD = ${DESCRIPTORLIBS} #AUTOMAKE_OPTIONS = parallel-tests