cmake modifs for ELSEIF compatibility

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@579 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
legrand 2007-07-18 13:00:27 +00:00
commit 52e89bbcde
8 changed files with 105 additions and 78 deletions

View file

@ -21,12 +21,13 @@ SET (MOEO_SOURCES core/moeoObjectiveVectorTraits.cpp)
# --> UNIX
IF(UNIX)
ADD_LIBRARY(moeo STATIC ${MOEO_SOURCES})
# --> WIN
ELSEIF(WIN32)
ADD_LIBRARY(moeo STATIC ${MOEO_SOURCES})
ENDIF(UNIX)
# --> WIN
IF(WIN32)
ADD_LIBRARY(moeo STATIC ${MOEO_SOURCES})
ENDIF(WIN32)
######################################################################################