Commit cde22f83 authored by Robert Schmidt's avatar Robert Schmidt Committed by Sakthivel Velumani

Accept higher vers. nums in make_version/MAKE_VERSION

parent d5127b23
......@@ -77,7 +77,7 @@ endmacro(add_list_string_option)
function(make_version VERSION_VALUE)
math(EXPR RESULT "0")
foreach (ARG ${ARGN})
math(EXPR RESULT "${RESULT} * 16 + ${ARG}")
math(EXPR RESULT "${RESULT} * 256 + ${ARG}")
endforeach()
set(${VERSION_VALUE} "${RESULT}" PARENT_SCOPE)
endfunction()
......
......@@ -23,6 +23,6 @@
#define __openair_TYPES_H__
#include <stdint.h>
#define MAKE_VERSION(a,b,c) ((a)*256+(b)*16+c)
#define MAKE_VERSION(a,b,c) ((a)*65536+(b)*256+c)
#endif /*__openair_TYPES_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment