summaryrefslogtreecommitdiff
path: root/Modules/Compiler/SunPro-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/SunPro-CXX-DetermineCompiler.cmake
parent23f451bb33c384d19ec29934b2811e081ff3e685 (diff)
downloadcmake-8896501b236258f6908a59eb81f49983892bdcff.tar.gz
CompilerId: Allow specifying a prefix for preprocessor defines.
Diffstat (limited to 'Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake')
-rw-r--r--Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake12
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake b/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
index 044f0fa06a..0a48cc6776 100644
--- a/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
+++ b/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
@@ -4,12 +4,12 @@ set(_compiler_id_pp_test "defined(__SUNPRO_CC)")
set(_compiler_id_version_compute "
# if __SUNPRO_CC >= 0x5100
/* __SUNPRO_CC = 0xVRRP */
-# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
-# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
-# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# define @PREFIX@COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
+# define @PREFIX@COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
+# define @PREFIX@COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
-# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
-# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
-# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# define @PREFIX@COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
+# define @PREFIX@COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
+# define @PREFIX@COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# endif")