git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1790 331e1502-861f-0410-8da2-ba01fb791d7f
27 lines
1.1 KiB
CMake
27 lines
1.1 KiB
CMake
INCLUDE_DIRECTORIES(${EO_SRC_DIR}/src
|
|
${MO_SRC_DIR}/src
|
|
${PROBLEMS_SRC_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../src)
|
|
|
|
LINK_DIRECTORIES(${EO_BIN_DIR}/lib)
|
|
|
|
|
|
ADD_EXECUTABLE(testRandomWalk testRandomWalk.cpp)
|
|
ADD_EXECUTABLE(testMetropolisHasting testMetropolisHasting.cpp)
|
|
ADD_EXECUTABLE(testRandomNeutralWalk testRandomNeutralWalk.cpp)
|
|
ADD_EXECUTABLE(sampling sampling.cpp)
|
|
ADD_EXECUTABLE(densityOfStates densityOfStates.cpp)
|
|
ADD_EXECUTABLE(autocorrelation autocorrelation.cpp)
|
|
ADD_EXECUTABLE(adaptiveWalks adaptiveWalks.cpp)
|
|
ADD_EXECUTABLE(fdc fdc.cpp)
|
|
ADD_EXECUTABLE(neutralDegree neutralDegree.cpp)
|
|
|
|
TARGET_LINK_LIBRARIES(testRandomWalk eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(testMetropolisHasting eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(testRandomNeutralWalk eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(sampling eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(densityOfStates eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(autocorrelation eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(adaptiveWalks eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(fdc eoutils ga eo)
|
|
TARGET_LINK_LIBRARIES(neutralDegree eoutils ga eo)
|