diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-09-17 14:11:31 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-09-17 15:09:46 (GMT) |
commit | a91a64c316cc800a0a9781537a59b2ca9fe79332 (patch) | |
tree | 3972924f240ad45df5d131df7d1de5d0c45c8979 /BuildTNG.cmake | |
parent | 4a49d8146b653a0a2a13e411063d8c06339fb1ec (diff) |
Turned repeated code into functions.
This addresses earlier suggestions to avoid unnecessary repetitions
by making functions. New functions for reading and writing strings
and numerical data.
Also uses size_t for length of strings in many places.
Improved documentation of some functions.
Bumped version to 1.6.3
Change-Id: Id0c53b87a753c60b03cdbf35fb5bc58cfdd60705
Diffstat (limited to 'BuildTNG.cmake')
-rw-r--r-- | BuildTNG.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTNG.cmake b/BuildTNG.cmake index 723eac0..4c04fb2 100644 --- a/BuildTNG.cmake +++ b/BuildTNG.cmake @@ -5,7 +5,7 @@ set(TNG_ROOT_BINARY_DIR ${CMAKE_BINARY_DIR}/${TNG_ROOT_BINARY_DIR}) function (TNG_GENERATE_VERSION_H) set(TNG_MAJOR_VERSION "1") set(TNG_MINOR_VERSION "6") - set(TNG_VERSION_PATCH_LEVEL "2") + set(TNG_VERSION_PATCH_LEVEL "3") set(TNG_IO_VERSION "${TNG_MAJOR_VERSION}.${TNG_MINOR_VERSION}.${TNG_VERSION_PATCH_LEVEL}") set(TNG_API_VERSION "6") configure_file(${TNG_ROOT_SOURCE_DIR}/include/tng/version.h.in |