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

@ -51,12 +51,13 @@ SET (TSP_SOURCES graph.cpp
# --> UNIX
IF(UNIX)
ADD_LIBRARY(tsp STATIC ${TSP_SOURCES})
ENDIF(UNIX)
# --> WIN
ELSEIF(WIN32)
IF(WIN32)
ADD_LIBRARY(tsp STATIC ${TSP_SOURCES})
ENDIF(WIN32)
ENDIF(UNIX)
######################################################################################