From 5bcc44333f16f12208d3f6495bf2c26b51fc3bd8 Mon Sep 17 00:00:00 2001 From: wcancino Date: Fri, 23 Jan 2009 11:32:05 +0000 Subject: [PATCH] An simple CMakeFile, for internal use only git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1364 331e1502-861f-0410-8da2-ba01fb791d7f --- .../PhyloMOEA/PhyloMOEA/CMakeLists.txt | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 contribution/branches/PhyloMOEA/PhyloMOEA/CMakeLists.txt diff --git a/contribution/branches/PhyloMOEA/PhyloMOEA/CMakeLists.txt b/contribution/branches/PhyloMOEA/PhyloMOEA/CMakeLists.txt new file mode 100644 index 000000000..28b23d51f --- /dev/null +++ b/contribution/branches/PhyloMOEA/PhyloMOEA/CMakeLists.txt @@ -0,0 +1,35 @@ +###################################################################################### +### 1) Include the sources +###################################################################################### + +INCLUDE_DIRECTORIES(${CMAKE_INSTALL_PREFIX}/include/paradiseo/eo) +INCLUDE_DIRECTORIES(${CMAKE_INSTALL_PREFIX}/include/paradiseo/moeo) +INCLUDE_DIRECTORIES(${CMAKE_INSTALL_PREFIX}/include/paradiseo/peo) +INCLUDE_DIRECTORIES(.) +INCLUDE_DIRECTORIES(/usr/local/include/GTL) +LINK_DIRECTORIES(${CMAKE_INSTALL_PREFIX}/lib) +LINK_DIRECTORIES(/usr/local/lib) + +###################################################################################### +### 2) Define PhyloMOEA target +###################################################################################### + + +SET( PHYLOMOEA_SOURCES eigensolver.cpp + likelihoodcalculator.cpp + likoptimizer.cpp + matrixutils.cpp + parsimonycalculator.cpp + PhyloMOEA.cpp + probmatrixcontainer.cpp + ProbMatrix.cpp + RandomNr.cpp + Sequences.cpp + SubsModel.cpp + phylotreeIND.cpp + treeIterator.cpp + utils.cpp ) + +ADD_EXECUTABLE( PhyloMOEA ${PHYLOMOEA_SOURCES} ) + +TARGET_LINK_LIBRARIES(PhyloMOEA gsl gslcblas GTL eo eoutils ga moeo cma) \ No newline at end of file