https://github.com/Kitware/CMake
Raw File
Tip revision: f59513140bf086eda2029c5b4e950fc58216c06e authored by Brad King on 22 July 2016, 13:26:11 UTC
CMake 3.6.1
Tip revision: f595131
SDCC-C-DetermineCompiler.cmake

# sdcc, the small devices C compiler for embedded systems,
#   http://sdcc.sourceforge.net  */
set(_compiler_id_pp_test "defined(SDCC)")

set(_compiler_id_version_compute "
  /* SDCC = VRP */
#  define COMPILER_VERSION_MAJOR @MACRO_DEC@(SDCC/100)
#  define COMPILER_VERSION_MINOR @MACRO_DEC@(SDCC/10 % 10)
#  define COMPILER_VERSION_PATCH @MACRO_DEC@(SDCC    % 10)")
back to top