Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
second attempt
[simgrid.git] / buildtools / Cmake / Modules / FindGFortran.cmake
index 4dada0d..1369d64 100644 (file)
@@ -13,11 +13,15 @@ mark_as_advanced(GFORTRAN_EXE)
 
 message(STATUS "Looking for bin gfortran")
 set(SMPI_FORTRAN 0)
-if(GFORTRAN_EXE)
-  message(STATUS "Found gfortran: ${GFORTRAN_EXE}")
-  set(SMPI_FORTRAN 1)
+if(NOT WIN32 AND NOT APPLE)
+  if(GFORTRAN_EXE)
+    message(STATUS "Found gfortran: ${GFORTRAN_EXE}")
+    set(SMPI_FORTRAN 1)
+  else()
+    message(STATUS "Looking for bin gfortran - not found")
+  endif()
 else()
-  message(STATUS "Looking for bin gfortran - not found")
+  message(STATUS "SMPI Fortran is disabled on Windows and MacOS platforms. Please contact the SimGrid team if you need it.")
 endif()
 
 if(NOT SMPI_FORTRAN)