summaryrefslogtreecommitdiffstats
path: root/Modules/FortranCInterface
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-12-15 19:02:52 (GMT)
committerBrad King <brad.king@kitware.com>2009-12-15 19:02:52 (GMT)
commit0306080e6e11620f3b36ee515078f389bc00e4f3 (patch)
treebcf5a029d4f7fa438a607d19271ff1bb494e6481 /Modules/FortranCInterface
parent8a87458954af2cc0efccd3ca76c95eeb4e9de767 (diff)
downloadCMake-0306080e6e11620f3b36ee515078f389bc00e4f3.zip
CMake-0306080e6e11620f3b36ee515078f389bc00e4f3.tar.gz
CMake-0306080e6e11620f3b36ee515078f389bc00e4f3.tar.bz2
FortranCInterface: Support '=' in language flags
The commit "FortranCInterface: Honor language flags in checks" taught the FortranCInterface module to pass C and Fortran flags into its detection and verification checks. We improve on the change to allow the '=' character in the language flags. This requires passing the cache entry type with the -D options.
Diffstat (limited to 'Modules/FortranCInterface')
-rw-r--r--Modules/FortranCInterface/Detect.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FortranCInterface/Detect.cmake b/Modules/FortranCInterface/Detect.cmake
index 0f964a9..2ea43d1 100644
--- a/Modules/FortranCInterface/Detect.cmake
+++ b/Modules/FortranCInterface/Detect.cmake
@@ -40,8 +40,8 @@ try_compile(FortranCInterface_COMPILED
${FortranCInterface_SOURCE_DIR}
FortranCInterface
CMAKE_FLAGS
- "-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}"
- "-DCMAKE_Fortran_FLAGS=${CMAKE_Fortran_FLAGS}"
+ "-DCMAKE_C_FLAGS:STRING=${CMAKE_C_FLAGS}"
+ "-DCMAKE_Fortran_FLAGS:STRING=${CMAKE_Fortran_FLAGS}"
OUTPUT_VARIABLE FortranCInterface_OUTPUT)
set(FortranCInterface_COMPILED ${FortranCInterface_COMPILED})
unset(FortranCInterface_COMPILED CACHE)