summaryrefslogtreecommitdiff
path: root/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-23 11:00:28 +0200
committerStephen Kelly <steveire@gmail.com>2014-05-07 14:00:01 +0200
commit8896501b236258f6908a59eb81f49983892bdcff (patch)
treea68fc700ad4d22e48182529535e62c8eaf8c3ae0 /Modules/Compiler/HP-CXX-DetermineCompiler.cmake
parent23f451bb33c384d19ec29934b2811e081ff3e685 (diff)
downloadcmake-8896501b236258f6908a59eb81f49983892bdcff.tar.gz
CompilerId: Allow specifying a prefix for preprocessor defines.
Diffstat (limited to 'Modules/Compiler/HP-CXX-DetermineCompiler.cmake')
-rw-r--r--Modules/Compiler/HP-CXX-DetermineCompiler.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/Compiler/HP-CXX-DetermineCompiler.cmake b/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
index 2506e06ccb..6999492314 100644
--- a/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
+++ b/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
@@ -3,6 +3,6 @@ set(_compiler_id_pp_test "defined(__HP_aCC)")
set(_compiler_id_version_compute "
/* __HP_aCC = VVRRPP */
-# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
-# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
-# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)")
+# define @PREFIX@COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
+# define @PREFIX@COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
+# define @PREFIX@COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)")