File: Version.cmake

package info (click to toggle)
nghttp3 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,508 kB
  • sloc: ansic: 26,725; sh: 4,449; cpp: 643; makefile: 171
file content (11 lines) | stat: -rw-r--r-- 478 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
# Converts a version such as 1.2.255 to 0x0102ff
function(HexVersion version_hex_var major minor patch)
  math(EXPR version_dec "${major} * 256 * 256 + ${minor} * 256 + ${patch}")
  set(version_hex "0x")
  foreach(i RANGE 5 0 -1)
    math(EXPR num "(${version_dec} >> (4 * ${i})) & 15")
    string(SUBSTRING "0123456789abcdef" ${num} 1 num_hex)
    set(version_hex "${version_hex}${num_hex}")
  endforeach()
  set(${version_hex_var} "${version_hex}" PARENT_SCOPE)
endfunction()