paradiseo/edo/application/CMakeLists.txt
canape 23df679f51 some modifications for EDO
You have to sove this problems:
EDO: t-dispatcher-round (commented)
MOOE: Lesson4 (commented)
MO: t-moRndIndexedVectorTabuList (commented)
2013-02-07 14:43:11 +01:00

19 lines
579 B
CMake

######################################################################################
### 1) Where do we go now ?!?
######################################################################################
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/common
)
include_directories(${EIGEN3_INCLUDE_DIR})
add_subdirectory(common) # Rosenbrock and Sphere
#add_subdirectory(eda_sa)
if(EIGEN3_FOUND) # see edoNormalAdaptive
add_subdirectory(eda)
add_subdirectory(cmaes)
endif()
######################################################################################