summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/HP-UX.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-11-08 23:06:53 (GMT)
committerBrad King <brad.king@kitware.com>2002-11-08 23:06:53 (GMT)
commit3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b (patch)
tree88bd3a8bd7c60b350b8f706f46a6d6f82b5e2088 /Modules/Platform/HP-UX.cmake
parentc74ce9b21852bfd93d7d13ba70e11967b94a8300 (diff)
downloadCMake-3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b.zip
CMake-3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b.tar.gz
CMake-3a6d52f4c5a2cf7bb0fd0ec0e46cf1802d82c77b.tar.bz2
ENH: Moved caching of C*_FLAGS* settings down to CMakeSystemSpecificInformation.cmake. The platform files can set the defaults on the first run, and then the settings are cached at the end.
Diffstat (limited to 'Modules/Platform/HP-UX.cmake')
-rw-r--r--Modules/Platform/HP-UX.cmake18
1 files changed, 6 insertions, 12 deletions
diff --git a/Modules/Platform/HP-UX.cmake b/Modules/Platform/HP-UX.cmake
index 0f123b0..ebc370a 100644
--- a/Modules/Platform/HP-UX.cmake
+++ b/Modules/Platform/HP-UX.cmake
@@ -41,17 +41,11 @@ ELSE(CMAKE_COMPILER_IS_GNUCXX)
SET(CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG "-Wl,+b") # -rpath
SET(CMAKE_SHARED_LIBRARY_CXX_FLAGS "-fPIC") # -pic
- SET (CMAKE_CXX_FLAGS "" CACHE STRING
- "Flags used by the compiler during all build types.")
- SET (CMAKE_CXX_FLAGS_DEBUG "-g" CACHE STRING
- "Flags used by the compiler during debug builds.")
- SET (CMAKE_CXX_FLAGS_MINSIZEREL "-O3" CACHE STRING
- "Flags used by the compiler during release minsize builds.")
- SET (CMAKE_CXX_FLAGS_RELEASE "-O2" CACHE STRING
- "Flags used by the compiler during release builds (/MD /Ob1 /Oi /Ot /Oy /Gs will produce slightly less optimized but smaller files).")
- SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "-g" CACHE STRING
- "Flags used by the compiler during Release with Debug Info builds.")
- SET (CMAKE_C_FLAGS "" CACHE STRING
- "Flags for C compiler.")
+ SET (CMAKE_CXX_FLAGS "")
+ SET (CMAKE_CXX_FLAGS_DEBUG "-g")
+ SET (CMAKE_CXX_FLAGS_MINSIZEREL "-O3")
+ SET (CMAKE_CXX_FLAGS_RELEASE "-O2")
+ SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "-g")
+ SET (CMAKE_C_FLAGS "")
ENDIF(CMAKE_COMPILER_IS_GNUCXX)