source: src/Jobs/unittests/Makefile.am@ 88bb6b

Last change on this file since 88bb6b was 353326, checked in by Frederik Heber <heber@…>, 12 years ago

FIX: Changed LIBADDs and LDADDs to get rid of libtool patching.

  • with the new ubuntu version libtool is told not to pass through dependencies in a hierarchy of shared libraries. Thus, we have been using a small patch to tell libtool to pass nonetheless. However, this is not necessary if the structure is slightly changed:
    • cleanUp now resides with libMolecuilderUI.la instead of molecuilder and molecuildergui directly
    • added LIBADD to libMolecuilder.la with libMolecuilderShapes.la
    • fixed some unit tests LDADDs
  • Property mode set to 100644
File size: 1.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4JOBSTESTSSOURCES = \
5 ../Jobs/unittests/MPQCCommandJobUnitTest.cpp
6
7JOBSTESTSHEADERS = \
8 ../Jobs/unittests/MPQCCommandJobUnitTest.hpp
9
10JOBSTESTS = \
11 MPQCCommandJobUnitTest
12
13
14TESTS += $(JOBSTESTS)
15check_PROGRAMS += $(JOBSTESTS)
16noinst_PROGRAMS += $(JOBSTESTS)
17
18JOBSLIBS = \
19 ../libMolecuilderJobs.la \
20 ../libMolecuilderFragmentationContainers.la \
21 ../libMolecuilderFragmentationSummation.la \
22 $(JobMarket_LIBS) \
23 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
24 $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS) \
25 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS) \
26 ${CodePatterns_LIBS}
27
28MPQCCommandJobUnitTest_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
29MPQCCommandJobUnitTest_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS}
30MPQCCommandJobUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
31 ../Jobs/unittests/MPQCCommandJobUnitTest.cpp \
32 ../Jobs/unittests/MPQCCommandJobUnitTest.hpp
33MPQCCommandJobUnitTest_LDADD = ${JOBSLIBS}
34
35#AUTOMAKE_OPTIONS = parallel-test
Note: See TracBrowser for help on using the repository browser.