source: src/Atom/unittests/Makefile.am

Candidate_v1.6.1
Last change on this file was 4ecb2d, checked in by Frederik Heber <heber@…>, 8 years ago

Moved LinearAlgebra sub-package into ThirdParty folder.

  • needed to adapt location of libLinearAlgebra.la in all Makefile.am's.
  • relinked m4 subfolder, relinked am_doxygen_include.am. Both point to those present in molecuilder parent folder.
  • adapted configure.ac's:
  • Property mode set to 100644
File size: 1.2 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4ATOMTESTSSOURCES = \
5 ../Atom/unittests/AtomObserverUnitTest.cpp \
6 ../Atom/unittests/CopyAtomsInterfaceUnitTest.cpp \
7 stubs/ObserverStub.cpp
8
9ATOMTESTSHEADERS = \
10 ../Atom/unittests/AtomObserverUnitTest.hpp \
11 ../Atom/unittests/CopyAtomsInterfaceUnitTest.hpp \
12 stubs/ObserverStub.hpp
13
14ATOMTESTS = \
15 AtomObserverUnitTest \
16 CopyAtomsInterfaceUnitTest
17
18TESTS += $(ATOMTESTS)
19check_PROGRAMS += $(ATOMTESTS)
20noinst_PROGRAMS += $(ATOMTESTS)
21
22ATOMTESTLIBS = \
23 libUnitTest.la \
24 ../libMolecuilder.la \
25 ../libMolecuilderUI.la
26ATOMTESTLIBS += \
27 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
28 ${CodePatterns_LIBS} \
29 $(BOOST_LIB)
30
31AtomObserverUnitTest_SOURCES = \
32 ../Atom/unittests/AtomObserverUnitTest.cpp \
33 ../Atom/unittests/AtomObserverUnitTest.hpp \
34 stubs/ObserverStub.cpp \
35 stubs/ObserverStub.hpp
36AtomObserverUnitTest_LDADD = ${ATOMTESTLIBS}
37
38CopyAtomsInterfaceUnitTest_SOURCES = \
39 ../Atom/unittests/CopyAtomsInterfaceUnitTest.cpp \
40 ../Atom/unittests/CopyAtomsInterfaceUnitTest.hpp
41CopyAtomsInterfaceUnitTest_LDADD = ${ATOMTESTLIBS}
42
43
44#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.