mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
21d1e981ca
* Remove Git revision finding code in favor of a simple command call: git rev-parse --short=7 HEAD * Added GIT_HEAD_OVERRIDE to explicitly define the hash for the current commit in case git is not available * Made WIX default over NSIS in release tool * Rename version.h to git-info.h
119 lines
5.0 KiB
CMake
119 lines
5.0 KiB
CMake
# The MIT License (MIT)
|
|
#
|
|
# Copyright (c) 2015, by [halex2005](mailto:akharlov@gmail.com)
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
# this software and associated documentation files (the "Software"), to deal in
|
|
# the Software without restriction, including without limitation the rights to
|
|
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
# the Software, and to permit persons to whom the Software is furnished to do so,
|
|
# subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
include (CMakeParseArguments)
|
|
|
|
set (GenerateProductVersionCurrentDir ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
# generate_product_version() function
|
|
#
|
|
# This function uses VersionInfo.in template file and VersionResource.rc file
|
|
# to generate WIN32 resource with version information and general resource strings.
|
|
#
|
|
# Usage:
|
|
# generate_product_version(
|
|
# SomeOutputResourceVariable
|
|
# NAME MyGreatProject
|
|
# ICON ${PATH_TO_APP_ICON}
|
|
# VERSION_MAJOR 2
|
|
# VERSION_MINOR 3
|
|
# VERSION_PATH ${BUILD_COUNTER}
|
|
# VERSION_REVISION ${BUILD_REVISION}
|
|
# )
|
|
# where BUILD_COUNTER and BUILD_REVISION could be values from your CI server.
|
|
#
|
|
# You can use generated resource for your executable targets:
|
|
# add_executable(target-name ${target-files} ${SomeOutputResourceVariable})
|
|
#
|
|
# You can specify resource strings in arguments:
|
|
# NAME - name of executable (no defaults, ex: Microsoft Word)
|
|
# BUNDLE - bundle (${NAME} is default, ex: Microsoft Office)
|
|
# VERSION_MAJOR - 1 is default
|
|
# VERSION_MINOR - 0 is default
|
|
# VERSION_PATCH - 0 is default
|
|
# COMPANY_NAME - your company name (no defaults)
|
|
# COMPANY_COPYRIGHT - ${COMPANY_NAME} (C) Copyright ${CURRENT_YEAR} is default
|
|
# COMMENTS - ${NAME} v${VERSION_MAJOR}.${VERSION_MINOR} is default
|
|
# ORIGINAL_FILENAME - ${NAME} is default
|
|
# INTERNAL_NAME - ${NAME} is default
|
|
# FILE_DESCRIPTION - ${NAME} is default
|
|
function(generate_product_version outfiles)
|
|
set (options)
|
|
set (oneValueArgs
|
|
NAME
|
|
BUNDLE
|
|
VERSION_MAJOR
|
|
VERSION_MINOR
|
|
VERSION_PATCH
|
|
COMPANY_NAME
|
|
COMPANY_COPYRIGHT
|
|
COMMENTS
|
|
ORIGINAL_FILENAME
|
|
INTERNAL_NAME
|
|
FILE_DESCRIPTION)
|
|
set (multiValueArgs)
|
|
cmake_parse_arguments(PRODUCT "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
|
|
if (NOT PRODUCT_BUNDLE OR "${PRODUCT_BUNDLE}" STREQUAL "")
|
|
set(PRODUCT_BUNDLE "${PRODUCT_NAME}")
|
|
endif()
|
|
if (NOT PRODUCT_VERSION_MAJOR OR "${PRODUCT_VERSION_MAJOR}" STREQUAL "")
|
|
set(PRODUCT_VERSION_MAJOR 1)
|
|
endif()
|
|
if (NOT PRODUCT_VERSION_MINOR OR "${PRODUCT_VERSION_MINOR}" STREQUAL "")
|
|
set(PRODUCT_VERSION_MINOR 0)
|
|
endif()
|
|
if (NOT PRODUCT_VERSION_PATCH OR "${PRODUCT_VERSION_PATCH}" STREQUAL "")
|
|
set(PRODUCT_VERSION_PATCH 0)
|
|
endif()
|
|
|
|
if (NOT PRODUCT_COMPANY_COPYRIGHT OR "${PRODUCT_COMPANY_COPYRIGHT}" STREQUAL "")
|
|
string(TIMESTAMP PRODUCT_CURRENT_YEAR "%Y")
|
|
set(PRODUCT_COMPANY_COPYRIGHT "Copyright (C) ${PRODUCT_CURRENT_YEAR} ${PRODUCT_COMPANY_NAME}")
|
|
endif()
|
|
if (NOT PRODUCT_COMMENTS OR "${PRODUCT_COMMENTS}" STREQUAL "")
|
|
set(PRODUCT_COMMENTS "${PRODUCT_NAME} v${PRODUCT_VERSION_MAJOR}.${PRODUCT_VERSION_MINOR}.${PRODUCT_VERSION_PATCH}")
|
|
endif()
|
|
if (NOT PRODUCT_ORIGINAL_FILENAME OR "${PRODUCT_ORIGINAL_FILENAME}" STREQUAL "")
|
|
set(PRODUCT_ORIGINAL_FILENAME "${PRODUCT_NAME}")
|
|
endif()
|
|
if (NOT PRODUCT_INTERNAL_NAME OR "${PRODUCT_INTERNAL_NAME}" STREQUAL "")
|
|
set(PRODUCT_INTERNAL_NAME "${PRODUCT_NAME}")
|
|
endif()
|
|
if (NOT PRODUCT_FILE_DESCRIPTION OR "${PRODUCT_FILE_DESCRIPTION}" STREQUAL "")
|
|
set(PRODUCT_FILE_DESCRIPTION "${PRODUCT_NAME}")
|
|
endif()
|
|
|
|
set (_VersionInfoFile ${CMAKE_CURRENT_BINARY_DIR}/VersionInfo.h)
|
|
set (_VersionResourceFile ${CMAKE_CURRENT_BINARY_DIR}/VersionResource.rc)
|
|
configure_file(
|
|
${GenerateProductVersionCurrentDir}/VersionInfo.in
|
|
${_VersionInfoFile}
|
|
@ONLY)
|
|
configure_file(
|
|
${GenerateProductVersionCurrentDir}/VersionResource.rc
|
|
${_VersionResourceFile}
|
|
COPYONLY)
|
|
list(APPEND ${outfiles} ${_VersionInfoFile} ${_VersionResourceFile})
|
|
set (${outfiles} ${${outfiles}} PARENT_SCOPE)
|
|
endfunction()
|