diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2013-02-28 15:57:35 -0800 |
---|---|---|
committer | Nicholas Corgan <nick.corgan@ettus.com> | 2013-02-28 15:59:55 -0800 |
commit | 4a320f31432f8f7c50456a20c4de0ca9b0dde017 (patch) | |
tree | c222ecf0bc314ed45ef6ad4240719083b3aabc33 /host/cmake/Modules | |
parent | 91cfa4f67f5df23e6de41330dcb0782cd6a2ff68 (diff) | |
download | uhd-4a320f31432f8f7c50456a20c4de0ca9b0dde017.tar.gz uhd-4a320f31432f8f7c50456a20c4de0ca9b0dde017.tar.bz2 uhd-4a320f31432f8f7c50456a20c4de0ca9b0dde017.zip |
Added Windows DLL resource file to insert version into DLL
Diffstat (limited to 'host/cmake/Modules')
-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 1a10f42ba..32ccaafc6 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 004) SET(UHD_VERSION_PATCH 005) ######################################################################## +# 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 ######################################################################## |