-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathVersion.cmake
22 lines (19 loc) · 1.03 KB
/
Version.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
##---------------------------------------------------------------------------##
## Profugus/Version.cmake
## Thomas M. Evans
## Monday December 2 21:37:2 2013
##---------------------------------------------------------------------------##
# Single file that needs to be changed on a release branch
# or on the development branch in order to configure Trilinos
# for release mode and set the version.
SET(${REPOSITORY_NAME}_VERSION 0.0.0)
SET(${REPOSITORY_NAME}_MAJOR_VERSION 00)
SET(${REPOSITORY_NAME}_MAJOR_MINOR_VERSION 040000)
SET(${REPOSITORY_NAME}_VERSION_STRING "0.0.0 (Dev)")
SET(${REPOSITORY_NAME}_ENABLE_DEVELOPMENT_MODE_DEFAULT ON) # Change to 'OFF' for a release
# Used by testing scripts and should not be used elsewhere
SET(${REPOSITORY_NAME}_REPOSITORY_BRANCH "master" CACHE INTERNAL "")
SET(${REPOSITORY_NAME}_TESTING_TRACK "" CACHE INTERNAL "")
##---------------------------------------------------------------------------##
## end of Profugus/Version.cmake
##---------------------------------------------------------------------------##