diff options
author | Brad King <brad.king@kitware.com> | 2009-07-23 14:06:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-23 14:06:31 (GMT) |
commit | 797e49a1cc53fb120fad286665c875075eb18361 (patch) | |
tree | 35981054a7242db17c003936e9b4a9d87b50ed9f /Modules/CMakeFortranInformation.cmake | |
parent | f10c25816761c8e4f9bddf85c76a2022ff9730f9 (diff) | |
download | CMake-797e49a1cc53fb120fad286665c875075eb18361.zip CMake-797e49a1cc53fb120fad286665c875075eb18361.tar.gz CMake-797e49a1cc53fb120fad286665c875075eb18361.tar.bz2 |
ENH: Load platform-independent per-compiler files
This teaches the language configuration modules to load per-compiler
information for each language using the compiler id but no system name.
They look for modules named "Compiler/<id>-<lang>.cmake". Such modules
may specify compiler flags that do not depend on the platform.
Diffstat (limited to 'Modules/CMakeFortranInformation.cmake')
-rw-r--r-- | Modules/CMakeFortranInformation.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/CMakeFortranInformation.cmake b/Modules/CMakeFortranInformation.cmake index 25ebe21..443d71e 100644 --- a/Modules/CMakeFortranInformation.cmake +++ b/Modules/CMakeFortranInformation.cmake @@ -3,6 +3,11 @@ # It also loads the available platform file for the system-compiler # if it exists. +# Load compiler-specific information. +IF(CMAKE_Fortran_COMPILER_ID) + INCLUDE(Compiler/${CMAKE_Fortran_COMPILER_ID}-Fortran OPTIONAL) +ENDIF(CMAKE_Fortran_COMPILER_ID) + SET(CMAKE_BASE_NAME) GET_FILENAME_COMPONENT(CMAKE_BASE_NAME ${CMAKE_Fortran_COMPILER} NAME_WE) # since the gnu compiler has several names force g++ |