From cbea0180a8a42faec4793a4c534b8b6388718cbe Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Sun, 31 Oct 2010 23:01:16 +0100 Subject: [PATCH] fix #10: removed MOO binaries --- eo/NEWS | 1 + eo/src/CMakeLists.txt | 1 - eo/test/CMakeLists.txt | 6 ++---- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/eo/NEWS b/eo/NEWS index c4fa652cd..359668933 100644 --- a/eo/NEWS +++ b/eo/NEWS @@ -17,6 +17,7 @@ - interquartile range stat - uniform(min,max) random function - compatibility macros for compiling paradiseo with CUDACC + - removed old multi-objective classes, deprecated by the Paradiseo-MOEO project - new website, switch from CVS to GIT, and a cool logo! * release 1.0.1 (23. Jan. 2006) diff --git a/eo/src/CMakeLists.txt b/eo/src/CMakeLists.txt index ec471597a..7a6d6f334 100644 --- a/eo/src/CMakeLists.txt +++ b/eo/src/CMakeLists.txt @@ -41,7 +41,6 @@ ADD_SUBDIRECTORY(do) ADD_SUBDIRECTORY(es) ADD_SUBDIRECTORY(ga) ADD_SUBDIRECTORY(gp) -ADD_SUBDIRECTORY(moo) ADD_SUBDIRECTORY(other) ADD_SUBDIRECTORY(utils) diff --git a/eo/test/CMakeLists.txt b/eo/test/CMakeLists.txt index cc4becdb1..2c0772def 100644 --- a/eo/test/CMakeLists.txt +++ b/eo/test/CMakeLists.txt @@ -56,7 +56,6 @@ SET (TEST_LIST t-eoSecondsElapsedContinue t-eoRNG t-eoEasyPSO - t-eoNSGA t-eoInt t-eoInitPermutation t-eoSwapMutation @@ -67,7 +66,6 @@ SET (TEST_LIST t-eoOrderXover t-eoExtendedVelocity # t-eoFrontSorter - # t-eoEpsMOEA t-eoLogger ) @@ -84,7 +82,7 @@ IF(ENABLE_MINIMAL_CMAKE_TESTING) SET ("T_${mintest}_SOURCES" "${mintest}.cpp") ADD_EXECUTABLE(${mintest} ${T_${mintest}_SOURCES}) ADD_TEST(${mintest} ${mintest}) - TARGET_LINK_LIBRARIES(${mintest} ga es cma eoutils eo eomoo) + TARGET_LINK_LIBRARIES(${mintest} ga es cma eoutils eo) ENDFOREACH (mintest) ELSEIF(ENABLE_CMAKE_TESTING) @@ -92,7 +90,7 @@ ELSEIF(ENABLE_CMAKE_TESTING) FOREACH (test ${TEST_LIST}) ADD_EXECUTABLE(${test} ${T_${test}_SOURCES}) ADD_TEST(${test} ${test}) - TARGET_LINK_LIBRARIES(${test} ga es cma eoutils eo eomoo) + TARGET_LINK_LIBRARIES(${test} ga es cma eoutils eo) INSTALL(TARGETS ${test} RUNTIME DESTINATION share/eo/test COMPONENT test) ENDFOREACH (test)