diff options
author | Brad King <brad.king@kitware.com> | 2009-12-04 15:21:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-12-04 15:21:57 (GMT) |
commit | c106cb2e2fcae39c29405c288c1858959504516d (patch) | |
tree | 22015ca77aa9ca7e503cb31165e3459a8ea7453f /Modules/Platform/Linux-PGI.cmake | |
parent | 2d948e94bfd542cd89f641d765ea46bc6fa3e46b (diff) | |
download | CMake-c106cb2e2fcae39c29405c288c1858959504516d.zip CMake-c106cb2e2fcae39c29405c288c1858959504516d.tar.gz CMake-c106cb2e2fcae39c29405c288c1858959504516d.tar.bz2 |
Generalize support for Portland Group Compiler
We factor flags from Platform/Linux-PGI-Fortran.cmake into language
independent helper modules
Compiler/PGI.cmake
Platform/Linux-PGI.cmake
and invoke the macros from
Compiler/PGI-<lang>.cmake
Platform/Linux-PGI-<lang>.cmake
This enables general support for the PGI compilers.
Diffstat (limited to 'Modules/Platform/Linux-PGI.cmake')
-rw-r--r-- | Modules/Platform/Linux-PGI.cmake | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Modules/Platform/Linux-PGI.cmake b/Modules/Platform/Linux-PGI.cmake new file mode 100644 index 0000000..868ee33 --- /dev/null +++ b/Modules/Platform/Linux-PGI.cmake @@ -0,0 +1,25 @@ + +#============================================================================= +# Copyright 2002-2009 Kitware, Inc. +# +# Distributed under the OSI-approved BSD License (the "License"); +# see accompanying file Copyright.txt for details. +# +# This software is distributed WITHOUT ANY WARRANTY; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the License for more information. +#============================================================================= +# (To distributed this file outside of CMake, substitute the full +# License text for the above reference.) + +# This module is shared by multiple languages; use include blocker. +if(__LINUX_COMPILER_PGI) + return() +endif() +set(__LINUX_COMPILER_PGI 1) + +macro(__linux_compiler_pgi lang) + # Shared library compile and link flags. + set(CMAKE_SHARED_LIBRARY_${lang}_FLAGS "-fPIC") + set(CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS "-shared") +endmacro() |