fix #10: removed MOO binaries

This commit is contained in:
Johann Dreo 2010-10-31 23:01:16 +01:00
commit cbea0180a8
3 changed files with 3 additions and 5 deletions

View file

@ -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)

View file

@ -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)

View file

@ -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)