Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Restructuration of file CompleteInFiles.
[simgrid.git] / buildtools / Cmake / Modules / FindF2c.cmake
index 2c32af8..a6389a9 100644 (file)
@@ -58,4 +58,13 @@ endif(F2C_EXE)
 
 mark_as_advanced(HAVE_F2C_H)
 mark_as_advanced(F2C_EXE)
-mark_as_advanced(HAVE_F2C_LIB)
\ No newline at end of file
+mark_as_advanced(HAVE_F2C_LIB)
+
+if(HAVE_F2C_H)
+   string(REGEX MATCH "-I${HAVE_F2C_H} " operation "${CMAKE_C_FLAGS}")
+   if(NOT operation)
+               SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}-I${HAVE_F2C_H} ")
+   endif(NOT operation)
+else(HAVE_F2C_H)
+       message(STATUS "Warning : You should install f2c before use smpi.")
+endif(HAVE_F2C_H)
\ No newline at end of file