mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 05:37:21 -05:00
18 lines
608 B
CMake
18 lines
608 B
CMake
|
|
set(RESINSIGHT_MAJOR_VERSION 2026)
|
|
set(RESINSIGHT_MINOR_VERSION 02)
|
|
set(RESINSIGHT_PATCH_VERSION 3)
|
|
|
|
# Opional text with no restrictions
|
|
set(RESINSIGHT_VERSION_TEXT "-dev")
|
|
#set(RESINSIGHT_VERSION_TEXT "-RC_2")
|
|
|
|
# Optional text
|
|
# Must be unique and increasing within one combination of major/minor/patch version
|
|
# The uniqueness of this text is independent of RESINSIGHT_VERSION_TEXT
|
|
# Format of text must be ".xx"
|
|
set(RESINSIGHT_DEV_VERSION ".01")
|
|
|
|
set(STRPRODUCTVER ${RESINSIGHT_MAJOR_VERSION}.${RESINSIGHT_MINOR_VERSION}.${RESINSIGHT_PATCH_VERSION}${RESINSIGHT_VERSION_TEXT}${RESINSIGHT_DEV_VERSION})
|
|
|