mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
17a9cd2b02
* Packages are now created with dependencies Signed-off-by: Paulchen-Panther <paulchen-panter@protonmail.com> * Ignore site packages Signed-off-by: Paulchen-Panther <paulchen-panter@protonmail.com> * MacOS Package creation disabled * Append the OpenSSL library to the dependency list * - Exit codes and Error message are suppressed when copying files - OpenSSL root directory is set under MacOS - OpenSSL symlinks are attached - Packages and build directory renamed into Hyperion Signed-off-by: Paulchen-Panther <paulchen-panter@protonmail.com> * Update to semver version * Use version file for version management * Read version file in azure Co-authored-by: brindosch <edeltraud70@gmx.de>
16 lines
625 B
CMake
16 lines
625 B
CMake
function(SetVersionNumber PREFIX VERSION_STRING)
|
|
|
|
STRING(REGEX MATCHALL "[0-9]+|-([A-Za-z0-9_]+)" VERSION_PARTS ${VERSION_STRING} )
|
|
LIST( GET VERSION_PARTS 0 VERSION_MAJOR )
|
|
LIST( GET VERSION_PARTS 1 VERSION_MINOR )
|
|
LIST( GET VERSION_PARTS 2 VERSION_PATCH )
|
|
|
|
set(${PREFIX}_VERSION_MAJOR ${VERSION_MAJOR} PARENT_SCOPE)
|
|
set(${PREFIX}_VERSION_MINOR ${VERSION_MINOR} PARENT_SCOPE)
|
|
set(${PREFIX}_VERSION_PATCH ${VERSION_PATCH} PARENT_SCOPE)
|
|
|
|
#if(NOT VERSION_PRE MATCHES "stable")
|
|
# set(${PREFIX}_VERSION_PRE ${VERSION_PRE} PARENT_SCOPE)
|
|
# set( VERSION_PRE_FULL "-${VERSION_PRE}")
|
|
#endif()
|
|
endfunction() |