summaryrefslogtreecommitdiff
path: root/Modules/Compiler/PGI-C.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-12-04 10:21:57 -0500
committerBrad King <brad.king@kitware.com>2009-12-04 10:21:57 -0500
commitc106cb2e2fcae39c29405c288c1858959504516d (patch)
tree22015ca77aa9ca7e503cb31165e3459a8ea7453f /Modules/Compiler/PGI-C.cmake
parent2d948e94bfd542cd89f641d765ea46bc6fa3e46b (diff)
downloadcmake-c106cb2e2fcae39c29405c288c1858959504516d.tar.gz
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/Compiler/PGI-C.cmake')
-rw-r--r--Modules/Compiler/PGI-C.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/Compiler/PGI-C.cmake b/Modules/Compiler/PGI-C.cmake
index abf384ab86..da88c01164 100644
--- a/Modules/Compiler/PGI-C.cmake
+++ b/Modules/Compiler/PGI-C.cmake
@@ -1 +1,4 @@
-SET(CMAKE_C_VERBOSE_FLAG "-v")
+include(Compiler/PGI)
+__compiler_pgi(C)
+set(CMAKE_C_FLAGS_MINSIZEREL_INIT "${CMAKE_C_FLAGS_MINSIZEREL_INIT} -DNDEBUG")
+set(CMAKE_C_FLAGS_RELEASE_INIT "${CMAKE_C_FLAGS_RELEASE_INIT} -DNDEBUG")