mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-28 03:44:07 +00:00
Merge pull request #82 from xiaoyifang/feature/add-date
add date to version
This commit is contained in:
commit
297aaa2435
|
@ -12,7 +12,17 @@ system(git describe --tags --always --dirty): hasGit=1
|
||||||
!isEmpty(hasGit){
|
!isEmpty(hasGit){
|
||||||
GIT_HASH=$$system(git rev-parse --short=8 HEAD )
|
GIT_HASH=$$system(git rev-parse --short=8 HEAD )
|
||||||
}
|
}
|
||||||
system(echo $${VERSION}.$${GIT_HASH} > version.txt)
|
|
||||||
|
win32{
|
||||||
|
# date /T output is locale aware.
|
||||||
|
DD=$$system(date /T)
|
||||||
|
DATE =$$replace(DD, / , )
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
DATE=$$system(date '+%y%m%d')
|
||||||
|
}
|
||||||
|
|
||||||
|
system(echo $${VERSION}.$${GIT_HASH} on $${DATE} > version.txt)
|
||||||
|
|
||||||
# DEPENDPATH += . generators
|
# DEPENDPATH += . generators
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += .
|
||||||
|
|
Loading…
Reference in a new issue