An simple CMakeFile, for internal use only
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1364 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
68ec20fd66
commit
5bcc44333f
1 changed files with 35 additions and 0 deletions
35
contribution/branches/PhyloMOEA/PhyloMOEA/CMakeLists.txt
Normal file
35
contribution/branches/PhyloMOEA/PhyloMOEA/CMakeLists.txt
Normal file
|
|
@ -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)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue