[Echempp-devel] Experiment/Experiment/test Makefile.am,1.12,1.13
Status: Beta
Brought to you by:
berndspeiser
|
From: beeblbrox <bee...@us...> - 2007-04-06 10:15:54
|
Update of /cvsroot/echempp/Experiment/Experiment/test In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14349/test Modified Files: Makefile.am Log Message: Added LD directives for linking with boost. Index: Makefile.am =================================================================== RCS file: /cvsroot/echempp/Experiment/Experiment/test/Makefile.am,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile.am 14 Jan 2006 22:12:23 -0000 1.12 --- Makefile.am 6 Apr 2007 10:15:51 -0000 1.13 *************** *** 1,8 **** check_PROGRAMS = ExperimentTest ! ExperimentTest_SOURCES = ExperimentTest.cc ! ExperimentTest_LDADD = ../libeppExperiment.la \ ! -leppExcitationFunction \ -leppData \ -L$(QUANTITIESLIB) -lGeneralQuantities \ --- 1,10 ---- check_PROGRAMS = ExperimentTest ! ExperimentTest_SOURCES = ExperimentTest.cpp ! ExperimentTest_LDADD = -lboost_unit_test_framework \ ! -lboost_serialization \ ! -lboost_date_time \ ! -leppExcitationFunction \ -leppData \ -L$(QUANTITIESLIB) -lGeneralQuantities \ *************** *** 12,15 **** --- 14,19 ---- -L$(LOKILIB) -lloki + # ../libeppExperiment.la + INCLUDES = -I../../../Experiment \ -I$(LOKISRC) \ *************** *** 17,19 **** -I$(QUANTITIESSRC) ! ExperimentTest_CXXFLAGS = -Wall -Werror -pedantic-errors -DTIXML_USE_STL=YES --- 21,23 ---- -I$(QUANTITIESSRC) ! ExperimentTest_CXXFLAGS = -Wall -Werror -pedantic-errors \ -DTIXML_USE_STL=YES |