diff options
author | Brad King <brad.king@kitware.com> | 2006-08-01 19:36:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-01 19:36:49 (GMT) |
commit | c9506c30f0b9524e1eeee8a7c0176203218ed310 (patch) | |
tree | 0520ab4913ecb3216e5ea13ae310e0e427b80815 /Modules | |
parent | e0e32400af0edf7c621ca087377a8088b9b4d486 (diff) | |
download | CMake-c9506c30f0b9524e1eeee8a7c0176203218ed310.zip CMake-c9506c30f0b9524e1eeee8a7c0176203218ed310.tar.gz CMake-c9506c30f0b9524e1eeee8a7c0176203218ed310.tar.bz2 |
BUG: Fixed shared library version support for Fortran. This addresses bug#3558.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Platform/Linux.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/Platform/Linux.cmake b/Modules/Platform/Linux.cmake index 6ae2ed5..9174eb6 100644 --- a/Modules/Platform/Linux.cmake +++ b/Modules/Platform/Linux.cmake @@ -7,4 +7,5 @@ SET(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,") SET(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") SET(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,") SET(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG "-Wl,-soname,") +SET(CMAKE_SHARED_LIBRARY_SONAME_Fortran_FLAG "-Wl,-soname,") INCLUDE(Platform/UnixPaths) |