mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-01 17:36:21 +03:00
Refactor version handling to use version.cmake and update related scripts. Created new symbols to extract information by C function
23 lines
1.0 KiB
CMake
23 lines
1.0 KiB
CMake
#======================================================================
|
|
#
|
|
# Purpose: Defines macros identifying current version of Open CASCADE
|
|
#
|
|
# OCC_VERSION_MAJOR : (integer) number identifying major version
|
|
# OCC_VERSION_MINOR : (integer) number identifying minor version
|
|
# OCC_VERSION_MAINTENANCE : (integer) number identifying maintenance version
|
|
# OCC_VERSION_DEVELOPMENT : (string) if defined, indicates development or modified version
|
|
# in case of release, remove the value
|
|
#
|
|
# Sample values of OCC_VERSION_DEVELOPMENT:
|
|
# - "dev" for development version between releases
|
|
# - "beta..." or "rc..." for beta releases or release candidates
|
|
# - "project..." for version containing project-specific fixes
|
|
#
|
|
# For development version git commit hash can be added to the version string
|
|
#======================================================================
|
|
|
|
set (OCC_VERSION_MAJOR 7 )
|
|
set (OCC_VERSION_MINOR 8 )
|
|
set (OCC_VERSION_MAINTENANCE 2 )
|
|
set (OCC_VERSION_DEVELOPMENT "dev" )
|