-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathVersion.cmake
More file actions
20 lines (17 loc) · 813 Bytes
/
Version.cmake
File metadata and controls
20 lines (17 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# 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(Trilinos_VERSION 17.1.0)
SET(Trilinos_MAJOR_VERSION 17)
SET(Trilinos_MAJOR_MINOR_VERSION 170100)
SET(Trilinos_VERSION_STRING "17.1.0-dev")
SET(Trilinos_ENABLE_DEVELOPMENT_MODE_DEFAULT ON) # Change to 'OFF' for a release
# Used by testing scripts and should not be used elsewhere
SET(Trilinos_REPOSITORY_BRANCH "develop" CACHE INTERNAL "")
SET(Trilinos_EXTRAREPOS_BRANCH "master" CACHE INTERNAL "")
SET(Trilinos_TESTING_TRACK "" CACHE INTERNAL "")
# NOTE: Above, the extra repos for Trilinos don't have a 'develop' branch yet
# so you have to run this with 'master'. But on a release branch, these
# should be change to all the same branch.