diff options
author | Cristian Adam <cristian.adam@gmail.com> | 2017-09-29 00:37:00 (GMT) |
---|---|---|
committer | Cristian Adam <cristian.adam@gmail.com> | 2017-12-01 11:05:02 (GMT) |
commit | 4d611868dfe37e73aaba4cdfde37b17e8a2ec7c1 (patch) | |
tree | 92babc3335bb767110ef9dc0aff81e464fab35bd /Modules/CheckFortranFunctionExists.cmake | |
parent | 65f21a7eadc2144f0c85cd883cf63a6eb7681528 (diff) | |
download | CMake-4d611868dfe37e73aaba4cdfde37b17e8a2ec7c1.zip CMake-4d611868dfe37e73aaba4cdfde37b17e8a2ec7c1.tar.gz CMake-4d611868dfe37e73aaba4cdfde37b17e8a2ec7c1.tar.bz2 |
Check*: Added include guards
Diffstat (limited to 'Modules/CheckFortranFunctionExists.cmake')
-rw-r--r-- | Modules/CheckFortranFunctionExists.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/CheckFortranFunctionExists.cmake b/Modules/CheckFortranFunctionExists.cmake index 5fc740a..f3ced93 100644 --- a/Modules/CheckFortranFunctionExists.cmake +++ b/Modules/CheckFortranFunctionExists.cmake @@ -24,6 +24,8 @@ # # CMAKE_REQUIRED_LIBRARIES = list of libraries to link +include_guard(GLOBAL) + macro(CHECK_FORTRAN_FUNCTION_EXISTS FUNCTION VARIABLE) if(NOT DEFINED ${VARIABLE}) message(STATUS "Looking for Fortran ${FUNCTION}") |