Skip to content

Commit 6a797d0

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 1a61dfc + 83cc59c commit 6a797d0

39 files changed

+3373
-3924
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ For documentation, please see: http://sciinstitute.github.io/SCIRun/
6767
* Parallel make builds can be used as long the Boost target is built first, for example:
6868
- make -j4 Boost_external && make -j4
6969

70+
### Tagging releases
71+
On an OSX system, run script `release.sh` in the `src` directory with the release name in format `alpha.XX` as a parameter.
72+
7073
### Questions and Answers
7174
For help, email the testing mailing list at [email protected].
7275

src/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ git_describe(VERSION_TAG --tag)
106106
git_describe(VERSION_BRANCH --all)
107107
get_git_head_revision(VERSION_REFSPEC VERSION_HASHVAR)
108108

109+
IF(VERSION_TAG MATCHES "HEAD-HASH-NOTFOUND")
110+
FILE(READ ${CMAKE_CURRENT_SOURCE_DIR}/LATEST_TAG.txt VERSION_TAG)
111+
MESSAGE(STATUS "Found tag file for version info: " "${VERSION_TAG}")
112+
ENDIF()
113+
109114
MESSAGE(STATUS "Git version tag: " "${VERSION_TAG}")
110115
MESSAGE(STATUS "Git version branch: " "${VERSION_BRANCH}")
111116
MESSAGE(STATUS "Git version commit hash: " "${VERSION_HASHVAR}")

0 commit comments

Comments
 (0)