mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +03:00
Add qt sdk support
This commit is contained in:
parent
d3a215c12b
commit
91c5fb567a
7 changed files with 101 additions and 4 deletions
|
@ -60,6 +60,7 @@ default_config = {
|
|||
'r11c': None,
|
||||
'r12b': "$ANDROID_NDK",
|
||||
},
|
||||
'qt_sdk_path': None,
|
||||
'build_tools': "24.0.2",
|
||||
'force_build_tools': False,
|
||||
'java_paths': None,
|
||||
|
@ -1836,6 +1837,7 @@ def replace_config_vars(cmd, build):
|
|||
cmd = cmd.replace('$$SDK$$', config['sdk_path'])
|
||||
cmd = cmd.replace('$$NDK$$', build.ndk_path())
|
||||
cmd = cmd.replace('$$MVN3$$', config['mvn3'])
|
||||
cmd = cmd.replace('$$QT$$', config['qt_sdk_path'] or '')
|
||||
if build is not None:
|
||||
cmd = cmd.replace('$$COMMIT$$', build.commit)
|
||||
cmd = cmd.replace('$$VERSION$$', build.version)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue