2010-07-23 06:02:33 +00:00
|
|
|
#
|
2014-02-04 19:04:07 +00:00
|
|
|
# Copyright 2010-2014 Ettus Research LLC
|
2010-07-23 06:02:33 +00:00
|
|
|
#
|
|
|
|
|
# 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
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
#
|
|
|
|
|
|
2010-12-27 22:10:27 +00:00
|
|
|
########################################################################
|
|
|
|
|
INCLUDE(UHDPython) #requires python for parsing
|
2011-03-27 12:03:39 +00:00
|
|
|
FIND_PACKAGE(Git QUIET)
|
2010-12-27 22:10:27 +00:00
|
|
|
|
2010-07-23 06:02:33 +00:00
|
|
|
########################################################################
|
|
|
|
|
# Setup Version Numbers
|
2011-03-27 12:03:39 +00:00
|
|
|
# - increment major on api compatibility changes
|
|
|
|
|
# - increment minor on feature-level changes
|
|
|
|
|
# - increment patch on for bug fixes and docs
|
2010-07-23 06:02:33 +00:00
|
|
|
########################################################################
|
2011-03-27 12:03:39 +00:00
|
|
|
SET(UHD_VERSION_MAJOR 003)
|
2014-02-04 19:04:07 +00:00
|
|
|
SET(UHD_VERSION_MINOR 007)
|
2014-07-23 14:11:59 +00:00
|
|
|
SET(UHD_VERSION_PATCH 002)
|
2010-07-23 06:02:33 +00:00
|
|
|
|
2013-02-28 23:57:35 +00:00
|
|
|
########################################################################
|
2013-05-10 21:59:04 +00:00
|
|
|
# Set up trimmed version numbers for DLL resource files and packages
|
2013-02-28 23:57:35 +00:00
|
|
|
########################################################################
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
2013-05-10 21:59:04 +00:00
|
|
|
DEPAD_NUM(${UHD_VERSION_MAJOR} TRIMMED_VERSION_MAJOR)
|
|
|
|
|
DEPAD_NUM(${UHD_VERSION_MINOR} TRIMMED_VERSION_MINOR)
|
|
|
|
|
DEPAD_NUM(${UHD_VERSION_PATCH} TRIMMED_VERSION_PATCH)
|
|
|
|
|
SET(TRIMMED_UHD_VERSION "${TRIMMED_VERSION_MAJOR}.${TRIMMED_VERSION_MINOR}.${TRIMMED_VERSION_PATCH}")
|
2013-02-28 23:57:35 +00:00
|
|
|
|
2010-07-23 06:02:33 +00:00
|
|
|
########################################################################
|
2011-03-27 12:03:39 +00:00
|
|
|
# Version information discovery through git log
|
2010-07-23 06:02:33 +00:00
|
|
|
########################################################################
|
2011-03-27 12:03:39 +00:00
|
|
|
|
2012-03-26 17:20:58 +00:00
|
|
|
#grab the git ref id for the current head
|
|
|
|
|
EXECUTE_PROCESS(
|
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
|
|
|
COMMAND ${GIT_EXECUTABLE} describe --always --abbrev=8 --long
|
|
|
|
|
OUTPUT_VARIABLE _git_describe OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
|
RESULT_VARIABLE _git_describe_result
|
|
|
|
|
)
|
2010-07-23 06:02:33 +00:00
|
|
|
|
2012-03-26 17:20:58 +00:00
|
|
|
#only set the build info on success
|
|
|
|
|
IF(_git_describe_result EQUAL 0)
|
|
|
|
|
EXECUTE_PROCESS(
|
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
2014-04-30 19:39:50 +00:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} -c "print '${_git_describe}'.split('-')[-2]"
|
2012-03-26 17:20:58 +00:00
|
|
|
OUTPUT_VARIABLE UHD_GIT_COUNT OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
|
)
|
2010-07-23 06:02:33 +00:00
|
|
|
EXECUTE_PROCESS(
|
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
2014-04-30 19:39:50 +00:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} -c "print '${_git_describe}'.split('-')[-1]"
|
2012-03-26 17:20:58 +00:00
|
|
|
OUTPUT_VARIABLE UHD_GIT_HASH OUTPUT_STRIP_TRAILING_WHITESPACE
|
2010-07-23 06:02:33 +00:00
|
|
|
)
|
2012-03-26 17:20:58 +00:00
|
|
|
ENDIF()
|
2011-03-29 20:42:40 +00:00
|
|
|
|
2012-03-26 17:20:58 +00:00
|
|
|
IF(NOT UHD_GIT_COUNT)
|
|
|
|
|
SET(UHD_GIT_COUNT "0")
|
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
|
|
IF(NOT UHD_GIT_HASH)
|
|
|
|
|
SET(UHD_GIT_HASH "unknown")
|
|
|
|
|
ENDIF()
|
2012-02-28 17:17:26 +00:00
|
|
|
|
2012-03-26 17:20:58 +00:00
|
|
|
IF(UHD_RELEASE_MODE)
|
|
|
|
|
SET(UHD_GIT_HASH ${UHD_RELEASE_MODE})
|
2012-11-12 23:52:44 +00:00
|
|
|
|
|
|
|
|
#Ignore UHD_GIT_COUNT in UHD_VERSION if the string 'release' is in UHD_RELEASE_MODE
|
|
|
|
|
EXECUTE_PROCESS(
|
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
2013-11-27 22:20:35 +00:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} -c "print ('release' in '${UHD_RELEASE_MODE}') or ('rc' in '${UHD_RELEASE_MODE}')"
|
2012-11-12 23:52:44 +00:00
|
|
|
OUTPUT_VARIABLE TRIM_UHD_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
|
)
|
2012-03-26 17:20:58 +00:00
|
|
|
ENDIF()
|
2011-03-23 02:21:59 +00:00
|
|
|
|
2012-11-12 23:52:44 +00:00
|
|
|
|
2011-03-23 02:21:59 +00:00
|
|
|
########################################################################
|
2012-11-12 23:52:44 +00:00
|
|
|
IF(TRIM_UHD_VERSION STREQUAL "True")
|
2012-04-12 17:37:54 +00:00
|
|
|
SET(UHD_VERSION "${UHD_VERSION_MAJOR}.${UHD_VERSION_MINOR}.${UHD_VERSION_PATCH}-${UHD_GIT_HASH}")
|
|
|
|
|
ELSE()
|
|
|
|
|
SET(UHD_VERSION "${UHD_VERSION_MAJOR}.${UHD_VERSION_MINOR}.${UHD_VERSION_PATCH}-${UHD_GIT_COUNT}-${UHD_GIT_HASH}")
|
|
|
|
|
ENDIF()
|