summaryrefslogtreecommitdiff
path: root/Modules/Compiler/TI-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/TI-DetermineCompiler.cmake
parent23f451bb33c384d19ec29934b2811e081ff3e685 (diff)
downloadcmake-8896501b236258f6908a59eb81f49983892bdcff.tar.gz
CompilerId: Allow specifying a prefix for preprocessor defines.
Diffstat (limited to 'Modules/Compiler/TI-DetermineCompiler.cmake')
-rw-r--r--Modules/Compiler/TI-DetermineCompiler.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/Compiler/TI-DetermineCompiler.cmake b/Modules/Compiler/TI-DetermineCompiler.cmake
index d05e5bd3d5..1856c9b5ad 100644
--- a/Modules/Compiler/TI-DetermineCompiler.cmake
+++ b/Modules/Compiler/TI-DetermineCompiler.cmake
@@ -3,6 +3,6 @@ set(_compiler_id_pp_test "defined(__TI_COMPILER_VERSION__)")
set(_compiler_id_version_compute "
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
-# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
-# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
-# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)")
+# define @PREFIX@COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define @PREFIX@COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define @PREFIX@COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)")