diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2013-02-28 16:00:11 -0800 |
---|---|---|
committer | Nicholas Corgan <nick.corgan@ettus.com> | 2013-02-28 16:00:11 -0800 |
commit | 0d0a6e2cd0dfcf9762715f61ddbc7394230362b7 (patch) | |
tree | 4914572d5684fc8573dc239cffd9b15c4295b0f3 /host/cmake | |
parent | 2131127607cf4effacf2a952510b29228a88940c (diff) | |
parent | 58da716bf740704769b38bc97b976dc9635aab4f (diff) | |
download | uhd-0d0a6e2cd0dfcf9762715f61ddbc7394230362b7.tar.gz uhd-0d0a6e2cd0dfcf9762715f61ddbc7394230362b7.tar.bz2 uhd-0d0a6e2cd0dfcf9762715f61ddbc7394230362b7.zip |
Merge branch 'maint'
Diffstat (limited to 'host/cmake')
-rw-r--r-- | host/cmake/Modules/UHDVersion.cmake | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/host/cmake/Modules/UHDVersion.cmake b/host/cmake/Modules/UHDVersion.cmake index 74516f105..6c2d7e36e 100644 --- a/host/cmake/Modules/UHDVersion.cmake +++ b/host/cmake/Modules/UHDVersion.cmake @@ -1,5 +1,5 @@ # -# Copyright 2010-2012 Ettus Research LLC +# Copyright 2010-2013 Ettus Research LLC # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -30,6 +30,23 @@ SET(UHD_VERSION_MINOR 005) SET(UHD_VERSION_PATCH 001) ######################################################################## +# Set up DLL resource version numbers +######################################################################## + +FUNCTION(DEPAD_NUM input_num output_num) + EXECUTE_PROCESS( + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + COMMAND ${PYTHON_EXECUTABLE} -c "print int('${input_num}')" + OUTPUT_VARIABLE depadded_num OUTPUT_STRIP_TRAILING_WHITESPACE + ) + SET(${output_num} ${depadded_num} PARENT_SCOPE) +ENDFUNCTION(DEPAD_NUM) + +DEPAD_NUM(${UHD_VERSION_MAJOR} RC_VERSION_MAJOR) +DEPAD_NUM(${UHD_VERSION_MINOR} RC_VERSION_MINOR) +DEPAD_NUM(${UHD_VERSION_PATCH} RC_VERSION_PATCH) + +######################################################################## # Version information discovery through git log ######################################################################## |