CheckFortranFunctionExists.cmake 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #.rst:
  2. # CheckFortranFunctionExists
  3. # --------------------------
  4. #
  5. # macro which checks if the Fortran function exists
  6. #
  7. # CHECK_FORTRAN_FUNCTION_EXISTS(FUNCTION VARIABLE)
  8. #
  9. # ::
  10. #
  11. # FUNCTION - the name of the Fortran function
  12. # VARIABLE - variable to store the result
  13. # Will be created as an internal cache variable.
  14. #
  15. #
  16. #
  17. # The following variables may be set before calling this macro to modify
  18. # the way the check is run:
  19. #
  20. # ::
  21. #
  22. # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
  23. #=============================================================================
  24. # Copyright 2007-2009 Kitware, Inc.
  25. #
  26. # Distributed under the OSI-approved BSD License (the "License");
  27. # see accompanying file Copyright.txt for details.
  28. #
  29. # This software is distributed WITHOUT ANY WARRANTY; without even the
  30. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  31. # See the License for more information.
  32. #=============================================================================
  33. # (To distribute this file outside of CMake, substitute the full
  34. # License text for the above reference.)
  35. macro(CHECK_FORTRAN_FUNCTION_EXISTS FUNCTION VARIABLE)
  36. if(NOT DEFINED ${VARIABLE})
  37. message(STATUS "Looking for Fortran ${FUNCTION}")
  38. if(CMAKE_REQUIRED_LIBRARIES)
  39. set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES
  40. LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
  41. else()
  42. set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES)
  43. endif()
  44. file(WRITE
  45. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f
  46. "
  47. program TESTFortran
  48. external ${FUNCTION}
  49. call ${FUNCTION}()
  50. end program TESTFortran
  51. "
  52. )
  53. try_compile(${VARIABLE}
  54. ${CMAKE_BINARY_DIR}
  55. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f
  56. ${CHECK_FUNCTION_EXISTS_ADD_LIBRARIES}
  57. OUTPUT_VARIABLE OUTPUT
  58. )
  59. # message(STATUS "${OUTPUT}")
  60. if(${VARIABLE})
  61. set(${VARIABLE} 1 CACHE INTERNAL "Have Fortran function ${FUNCTION}")
  62. message(STATUS "Looking for Fortran ${FUNCTION} - found")
  63. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  64. "Determining if the Fortran ${FUNCTION} exists passed with the following output:\n"
  65. "${OUTPUT}\n\n")
  66. else()
  67. message(STATUS "Looking for Fortran ${FUNCTION} - not found")
  68. set(${VARIABLE} "" CACHE INTERNAL "Have Fortran function ${FUNCTION}")
  69. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  70. "Determining if the Fortran ${FUNCTION} exists failed with the following output:\n"
  71. "${OUTPUT}\n\n")
  72. endif()
  73. endif()
  74. endmacro()