Use version from .pro file

This commit is contained in:
Gres 2020-03-09 12:57:14 +03:00
parent d90fd735e6
commit 4005f94766
2 changed files with 9 additions and 3 deletions

View File

@ -18,8 +18,9 @@ linux{
LIBS += -lX11
}
DEFINES += VERSION="3.0.0"
VERSION = 3.0.0.0
VER=3.0.0
DEFINES += VERSION="$$VER"
VERSION = $$VER.0
QMAKE_TARGET_COMPANY = Gres
QMAKE_TARGET_PRODUCT = Screen Translator
QMAKE_TARGET_COPYRIGHT = Copyright (c) Gres

View File

@ -1,7 +1,7 @@
from os import getenv, path
import re
app_name = 'ScreenTranslator'
app_version = '3.0.0'
target_name = app_name
qt_version = '5.14.0'
@ -14,6 +14,11 @@ build_dir = path.abspath('build')
dependencies_dir = path.abspath('deps')
pro_file = path.abspath(path.dirname(__file__) +
'/../../screen-translator.pro')
app_version = 'testing'
with open(pro_file, 'r') as f:
match = re.search(r'VER=(.*)', f.read())
if match:
app_version = match.group(1)
ts_files_dir = path.abspath(path.dirname(__file__) + '/../../translations')
os_name = getenv('OS', 'linux')