Use version from .pro file
This commit is contained in:
parent
d90fd735e6
commit
4005f94766
@ -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
|
||||
|
@ -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')
|
||||
|
Loading…
Reference in New Issue
Block a user