aboutsummaryrefslogtreecommitdiffstats
path: root/host/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'host/cmake')
-rw-r--r--host/cmake/Modules/UHDVersion.cmake19
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
########################################################################