diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-05-30 08:52:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-06-12 19:38:48 (GMT) |
commit | 55d7aa4c44d78322df76679db768154568e51385 (patch) | |
tree | 229e243a01dc628b519a34d76216fd4c3f43237a /Modules/CMakeFortranInformation.cmake | |
parent | 31d7a0f2e3a717435da9660bcb2c23654171afda (diff) | |
download | CMake-55d7aa4c44d78322df76679db768154568e51385.zip CMake-55d7aa4c44d78322df76679db768154568e51385.tar.gz CMake-55d7aa4c44d78322df76679db768154568e51385.tar.bz2 |
Add platform variable for flags specific to shared libraries
Store in CMAKE_${lang}_COMPILE_OPTIONS_DLL flags from
CMAKE_SHARED_LIBRARY_${lang}_FLAGS that are truly exclusive to shared
libraries.
Diffstat (limited to 'Modules/CMakeFortranInformation.cmake')
-rw-r--r-- | Modules/CMakeFortranInformation.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/CMakeFortranInformation.cmake b/Modules/CMakeFortranInformation.cmake index 9c82409..d962f4c 100644 --- a/Modules/CMakeFortranInformation.cmake +++ b/Modules/CMakeFortranInformation.cmake @@ -82,6 +82,10 @@ IF(NOT CMAKE_Fortran_COMPILE_OPTIONS_PIE) SET(CMAKE_Fortran_COMPILE_OPTIONS_PIE ${CMAKE_C_COMPILE_OPTIONS_PIE}) ENDIF(NOT CMAKE_Fortran_COMPILE_OPTIONS_PIE) +IF(NOT CMAKE_Fortran_COMPILE_OPTIONS_DLL) + SET(CMAKE_Fortran_COMPILE_OPTIONS_DLL ${CMAKE_C_COMPILE_OPTIONS_DLL}) +ENDIF(NOT CMAKE_Fortran_COMPILE_OPTIONS_DLL) + # Create a set of shared library variable specific to Fortran # For 90% of the systems, these are the same flags as the C versions # so if these are not set just copy the flags from the c version |