2007-10-11 01:47:37 +04:00
|
|
|
# - Check if the Fortran function exists.
|
|
|
|
# CHECK_FORTRAN_FUNCTION_EXISTS(FUNCTION VARIABLE)
|
|
|
|
# - macro which checks if the Fortran function exists
|
|
|
|
# FUNCTION - the name of the Fortran function
|
|
|
|
# VARIABLE - variable to store the result
|
|
|
|
#
|
|
|
|
# The following variables may be set before calling this macro to
|
|
|
|
# modify the way the check is run:
|
|
|
|
#
|
|
|
|
# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
|
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2007-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/CMakeExpandImportedTargets.cmake")
|
2012-02-17 02:35:43 +04:00
|
|
|
|
|
|
|
|
2007-10-11 01:47:37 +04:00
|
|
|
macro(CHECK_FORTRAN_FUNCTION_EXISTS FUNCTION VARIABLE)
|
|
|
|
if(NOT DEFINED ${VARIABLE})
|
|
|
|
message(STATUS "Looking for Fortran ${FUNCTION}")
|
|
|
|
if(CMAKE_REQUIRED_LIBRARIES)
|
2012-02-17 02:35:43 +04:00
|
|
|
# this one translates potentially used imported library targets to their files on disk
|
|
|
|
cmake_expand_imported_targets(_ADJUSTED_CMAKE_REQUIRED_LIBRARIES LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} CONFIGURATION "${CMAKE_TRY_COMPILE_CONFIGURATION}")
|
2007-10-11 01:47:37 +04:00
|
|
|
set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES
|
2012-02-17 02:35:43 +04:00
|
|
|
"-DLINK_LIBRARIES:STRING=${_ADJUSTED_CMAKE_REQUIRED_LIBRARIES}")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2007-10-11 01:47:37 +04:00
|
|
|
set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
file(WRITE
|
2007-10-11 01:47:37 +04:00
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f
|
|
|
|
"
|
|
|
|
program TESTFortran
|
|
|
|
external ${FUNCTION}
|
2008-07-21 12:56:26 +04:00
|
|
|
call ${FUNCTION}()
|
2008-07-22 15:15:31 +04:00
|
|
|
end program TESTFortran
|
2007-10-11 01:47:37 +04:00
|
|
|
"
|
|
|
|
)
|
|
|
|
try_compile(${VARIABLE}
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f
|
|
|
|
CMAKE_FLAGS "${CHECK_FUNCTION_EXISTS_ADD_LIBRARIES}"
|
|
|
|
OUTPUT_VARIABLE OUTPUT
|
|
|
|
)
|
2008-07-22 15:15:31 +04:00
|
|
|
# message(STATUS "${OUTPUT}")
|
2007-10-11 01:47:37 +04:00
|
|
|
if(${VARIABLE})
|
|
|
|
set(${VARIABLE} 1 CACHE INTERNAL "Have Fortran function ${FUNCTION}")
|
|
|
|
message(STATUS "Looking for Fortran ${FUNCTION} - found")
|
2012-01-19 00:55:52 +04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2007-10-11 01:47:37 +04:00
|
|
|
"Determining if the Fortran ${FUNCTION} exists passed with the following output:\n"
|
|
|
|
"${OUTPUT}\n\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2007-10-11 01:47:37 +04:00
|
|
|
message(STATUS "Looking for Fortran ${FUNCTION} - not found")
|
|
|
|
set(${VARIABLE} "" CACHE INTERNAL "Have Fortran function ${FUNCTION}")
|
2012-01-19 00:55:52 +04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2007-10-11 01:47:37 +04:00
|
|
|
"Determining if the Fortran ${FUNCTION} exists failed with the following output:\n"
|
|
|
|
"${OUTPUT}\n\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endmacro()
|