1
mirror of https://github.com/qbittorrent/qBittorrent synced 2024-09-07 10:40:07 +02:00
qBittorrent/version.pri
2015-05-03 00:27:59 +03:00

30 lines
679 B
Plaintext

PROJECT_NAME = qbittorrent
# Define version numbers here
VER_MAJOR = 3
VER_MINOR = 2
VER_BUGFIX = 0
VER_BUILD = 0
VER_STATUS = RC1 # Should be empty for stable releases!
# Don't touch the rest part
PROJECT_VERSION = $${VER_MAJOR}.$${VER_MINOR}.$${VER_BUGFIX}
!equals(VER_BUILD, 0) {
PROJECT_VERSION = $${PROJECT_VERSION}.$${VER_BUILD}
}
PROJECT_VERSION = $${PROJECT_VERSION}$${VER_STATUS}
DEFINES += VERSION_MAJOR=$${VER_MAJOR}
DEFINES += VERSION_MINOR=$${VER_MINOR}
DEFINES += VERSION_BUGFIX=$${VER_BUGFIX}
DEFINES += VERSION_BUILD=$${VER_BUILD}
os2 {
DEFINES += VERSION=\'\"v$${PROJECT_VERSION}\"\'
} else {
DEFINES += VERSION=\\\"v$${PROJECT_VERSION}\\\"
}