X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4fb1f678c8da43cdf1bfcc6108883ef2a4cea952..c5c1970d1789e6fd9ca264d279a86abd8621bd5d:/buildtools/Cmake/Modules/FindF2c.cmake diff --git a/buildtools/Cmake/Modules/FindF2c.cmake b/buildtools/Cmake/Modules/FindF2c.cmake index e73fcc4c71..69e519f9a7 100644 --- a/buildtools/Cmake/Modules/FindF2c.cmake +++ b/buildtools/Cmake/Modules/FindF2c.cmake @@ -36,28 +36,28 @@ find_library(HAVE_F2C_LIB if(HAVE_F2C_H) set(HAVE_SMPI_F2C_H 1) -endif(HAVE_F2C_H) +endif() message(STATUS "Looking for f2c.h") if(HAVE_F2C_H) message(STATUS "Looking for f2c.h - found") -else(HAVE_F2C_H) +else() message(STATUS "Looking for f2c.h - not found") -endif(HAVE_F2C_H) +endif() message(STATUS "Looking for lib f2c") if(HAVE_F2C_LIB) message(STATUS "Looking for lib f2c - found") -else(HAVE_F2C_LIB) +else() message(STATUS "Looking for lib f2c - not found") -endif(HAVE_F2C_LIB) +endif() message(STATUS "Looking for bin f2c") if(F2C_EXE) message(STATUS "Found F2C: ${F2C_EXE}") -else(F2C_EXE) +else() message(STATUS "Looking for bin f2c - not found") -endif(F2C_EXE) +endif() mark_as_advanced(HAVE_F2C_H) mark_as_advanced(F2C_EXE) @@ -65,15 +65,15 @@ mark_as_advanced(HAVE_F2C_LIB) if(HAVE_F2C_H) include_directories(${HAVE_F2C_H}) -else(HAVE_F2C_H) +else() if(WIN32) message("-- Fortran for smpi is not installed (http://www.netlib.org/f2c/).") - else(WIN32) + else() message(FATAL_ERROR "You should install f2c before use smpi.") - endif(WIN32) -endif(HAVE_F2C_H) + endif() +endif() set(SMPI_F2C 0) if(HAVE_F2C_H AND F2C_EXE AND HAVE_F2C_LIB) set(SMPI_F2C 1) -endif(HAVE_F2C_H AND F2C_EXE AND HAVE_F2C_LIB) +endif()