Changeset 22b47e
- Timestamp:
- Jan 8, 2010, 5:44:51 PM (16 years ago)
- Children:
- e651e7
- Parents:
- a1acc5
- Location:
- molecuilder/src
- Files:
-
- 4 added
- 2 edited
-
Makefile.am (modified) (2 diffs)
-
gslvector.cpp (added)
-
gslvector.hpp (added)
-
unittests/Makefile.am (modified) (2 diffs)
-
unittests/gslvectorunittest.cpp (added)
-
unittests/gslvectorunittest.hpp (added)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Makefile.am
ra1acc5 r22b47e 1 1 ATOMSOURCE = atom.cpp atom_atominfo.cpp atom_bondedparticle.cpp atom_bondedparticleinfo.cpp atom_graphnode.cpp atom_graphnodeinfo.cpp atom_particleinfo.cpp atom_trajectoryparticle.cpp atom_trajectoryparticleinfo.cpp 2 2 ATOMHEADER = atom.hpp atom_atominfo.hpp atom_bondedparticle.hpp atom_bondedparticleinfo.hpp atom_graphnode.hpp atom_graphnodeinfo.hpp atom_particleinfo.hpp atom_trajectoryparticle.hpp atom_trajectoryparticleinfo.hpp 3 4 LINALGSOURCE = gslvector.cpp 5 LINALGHEADER = gslvector.hpp 3 6 4 7 ANALYSISSOURCE = analysis_bonds.cpp analysis_correlation.cpp … … 11 14 INCLUDES = -I$(top_srcdir)/src/unittests 12 15 13 noinst_LIBRARIES = libmolecuilder.a 16 noinst_LIBRARIES = libmolecuilder.a libgslwrapper.a 14 17 bin_PROGRAMS = molecuilder joiner analyzer 15 18 molecuilderdir = ${bindir} 16 19 libmolecuilder_a_SOURCES = ${SOURCE} ${HEADER} 20 libgslwrapper_a_SOURCES = ${LINALGSOURCE} ${LINALGHEADER} 17 21 molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db 18 22 molecuilder_LDFLAGS = $(BOOST_LIB) 19 23 molecuilder_SOURCES = builder.cpp 20 molecuilder_LDADD = libmolecuilder.a 24 molecuilder_LDADD = libmolecuilder.a libgslwrapper.a 21 25 joiner_SOURCES = joiner.cpp datacreator.cpp parser.cpp datacreator.hpp helpers.hpp parser.hpp periodentafel.hpp 22 26 joiner_LDADD = libmolecuilder.a -
molecuilder/src/unittests/Makefile.am
ra1acc5 r22b47e 4 4 AM_CXXFLAGS = $(CPPUNIT_CFLAGS) 5 5 6 TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest InfoUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest TesselationUnitTest TesselationInOutsideUnitTest VectorUnitTest 6 TESTS = \ 7 ActOnAllUnitTest \ 8 AnalysisBondsUnitTests \ 9 AnalysisCorrelationToPointUnitTest \ 10 AnalysisCorrelationToSurfaceUnitTest \ 11 AnalysisPairCorrelationUnitTest \ 12 BondGraphUnitTest \ 13 GSLVectorUnitTest \ 14 InfoUnitTest \ 15 ListOfBondsUnitTest \ 16 LogUnitTest \ 17 MemoryUsageObserverUnitTest \ 18 MemoryAllocatorUnitTest \ 19 StackClassUnitTest \ 20 TesselationUnitTest \ 21 TesselationInOutsideUnitTest \ 22 VectorUnitTest 23 7 24 check_PROGRAMS = $(TESTS) 8 25 noinst_PROGRAMS = $(TESTS) … … 26 43 BondGraphUnitTest_LDADD = ../libmolecuilder.a 27 44 45 GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp 46 GSLMatrixSymmetricUnitTest_LDADD = ../libgslwrapper.a 47 48 GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp 49 GSLMatrixUnitTest_LDADD = ../libgslwrapper.a 50 51 GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp 52 GSLVectorUnitTest_LDADD = ../libgslwrapper.a 53 28 54 InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp 29 55 InfoUnitTest_LDADD = ../libmolecuilder.a 56 57 LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp 58 LinearSystemOfEquationsUnitTest_LDADD = ../libgslwrapper.a ../libmolecuilder.a 30 59 31 60 ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
Note:
See TracChangeset
for help on using the changeset viewer.
