mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-04-28 06:34:35 +00:00
begin
This commit is contained in:
parent
846bde92b5
commit
a096fd6379
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
*.user.*
|
||||
gitpoller-work/
|
||||
*.tac
|
||||
*.log*
|
||||
|
@ -6,6 +6,7 @@
|
||||
"README.md",
|
||||
"testmodule.py",
|
||||
"qmake.py",
|
||||
"cmake.py",
|
||||
"stepsLib.py",
|
||||
"quasarAppCoin.py",
|
||||
"buildBotWorkers.py",
|
||||
|
374
BuildBotLib/cmake.py
Normal file
374
BuildBotLib/cmake.py
Normal file
@ -0,0 +1,374 @@
|
||||
# This Python file uses the following encoding: utf-8
|
||||
|
||||
import BuildBotLib.basemodule as base
|
||||
from buildbot.plugins import secrets, util, steps
|
||||
from pathlib import Path
|
||||
import datetime
|
||||
import os
|
||||
import subprocess
|
||||
from BuildBotLib.secretManager import *
|
||||
|
||||
def isClean(step):
|
||||
return step.getProperty('clean');
|
||||
|
||||
def isDeploy(step):
|
||||
return step.getProperty('deploy');
|
||||
|
||||
|
||||
def isRelease(step):
|
||||
return step.getProperty('release');
|
||||
|
||||
|
||||
def isTest(step):
|
||||
return step.getProperty('test');
|
||||
|
||||
def isWin(step):
|
||||
return step.getProperty('Windows');
|
||||
|
||||
def isLinux(step):
|
||||
return step.getProperty('Linux');
|
||||
|
||||
def isAndroid(step):
|
||||
return step.getProperty('Android');
|
||||
|
||||
def destDirPrivate(props):
|
||||
repo = str(props.getProperty('repository'));
|
||||
now = datetime.datetime.now().strftime("(%H_%M)_%m-%d-%Y")
|
||||
|
||||
return repo[repo.rfind('/'): len(repo) - 4] + "/" + now;
|
||||
|
||||
@util.renderer
|
||||
def destDir(props):
|
||||
home = str(Path.home())
|
||||
|
||||
return home + '/shared/' + destDirPrivate(props);
|
||||
|
||||
@util.renderer
|
||||
def destDirUrl(props):
|
||||
path = destDirPrivate(props);
|
||||
return "http://quasarapp.ddns.net:3031" + path;
|
||||
|
||||
@util.renderer
|
||||
def permission(props):
|
||||
home = str(Path.home())
|
||||
return ["chmod", "-R", "775", home + '/shared']
|
||||
|
||||
|
||||
@util.renderer
|
||||
def androidCmake(props):
|
||||
|
||||
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
|
||||
|
||||
QT_Dir = subprocess.getoutput(['qmake-android -query QT_HOST_PREFIX'])
|
||||
|
||||
command = [
|
||||
'cmake', '-DCMAKE_PREFIX_PATH=' + QT_Dir,
|
||||
'-DSPEC_X=android-clang',
|
||||
|
||||
'-DSIGN_PATH="' + secret.getValue('SIGPATH') + '"',
|
||||
'-DSIGN_ALIES="quasarapp"',
|
||||
'-DSIGN_STORE_PASSWORD="' + secret.getValue('SIGPASS') + '"'
|
||||
|
||||
]
|
||||
|
||||
return command
|
||||
|
||||
@util.renderer
|
||||
def windowsCmake(props):
|
||||
|
||||
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
|
||||
|
||||
QT_Dir = subprocess.getoutput(['qmake-android -query QT_HOST_PREFIX'])
|
||||
|
||||
command = [
|
||||
'cmake', '-DCMAKE_PREFIX_PATH=' + QT_Dir,
|
||||
'-DSPEC_X=win64-g++',
|
||||
|
||||
'-DSIGN_PATH="' + secret.getValue('SIGPATH') + '"',
|
||||
'-DSIGN_ALIES="quasarapp"',
|
||||
'-DSIGN_STORE_PASSWORD="' + secret.getValue('SIGPASS') + '"'
|
||||
|
||||
]
|
||||
|
||||
return command
|
||||
|
||||
@util.renderer
|
||||
def linuxCmake(props):
|
||||
|
||||
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
|
||||
|
||||
QT_Dir = subprocess.getoutput(['qmake-android -query QT_HOST_PREFIX'])
|
||||
|
||||
command = [
|
||||
'cmake', '-DCMAKE_PREFIX_PATH=' + QT_Dir,
|
||||
'-DSPEC_X=linux-g++',
|
||||
|
||||
'-DSIGN_PATH="' + secret.getValue('SIGPATH') + '"',
|
||||
'-DSIGN_ALIES="quasarapp"',
|
||||
'-DSIGN_STORE_PASSWORD="' + secret.getValue('SIGPASS') + '"'
|
||||
|
||||
]
|
||||
|
||||
return command
|
||||
|
||||
def LinuxSteps() :
|
||||
|
||||
list = [
|
||||
steps.ShellCommand(
|
||||
command = [
|
||||
'qmake-linux',
|
||||
"-r",
|
||||
"CONFIG+=qtquickcompiler",
|
||||
'ONLINE="~/repo"'
|
||||
],
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isLinux(step),
|
||||
|
||||
name = 'QMake Linux',
|
||||
description = 'create a make files for projects',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'clean'],
|
||||
doStepIf = lambda step : isClean(step) and isLinux(step),
|
||||
name = 'clean Linux',
|
||||
description = 'clean old build data',
|
||||
),
|
||||
steps.Compile(
|
||||
command = base.makeCommand,
|
||||
name = 'Build Linux',
|
||||
doStepIf = lambda step : isLinux(step),
|
||||
|
||||
haltOnFailure = True,
|
||||
description = 'run make for project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'deploy'],
|
||||
doStepIf = lambda step : isDeploy(step) and isLinux(step),
|
||||
name = 'deploy Linux',
|
||||
haltOnFailure = True,
|
||||
description = 'deploy project ',
|
||||
),
|
||||
steps.Compile(
|
||||
command= ['make', 'test'],
|
||||
doStepIf = lambda step : isTest(step) and isLinux(step),
|
||||
name = 'tests ',
|
||||
haltOnFailure = True,
|
||||
description = 'run autotests of project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'release'],
|
||||
doStepIf = lambda step : isRelease(step) and isLinux(step),
|
||||
name = 'release Linux',
|
||||
haltOnFailure = True,
|
||||
description = 'release project, like push to store or online repository',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'distclean'],
|
||||
doStepIf = lambda step : isLinux(step),
|
||||
name = 'clean Linux makefiles',
|
||||
description = 'clean old makefiles ',
|
||||
),
|
||||
|
||||
|
||||
]
|
||||
|
||||
return list;
|
||||
|
||||
def AndroidSteps() :
|
||||
|
||||
list = [
|
||||
steps.ShellCommand(
|
||||
command = androidQmake,
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isAndroid(step),
|
||||
|
||||
name = 'QMake Android',
|
||||
description = 'create a make files for projects',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'clean'],
|
||||
doStepIf = lambda step : isClean(step) and isAndroid(step),
|
||||
name = 'clean Android',
|
||||
description = 'clean old build data',
|
||||
),
|
||||
steps.Compile(
|
||||
command = base.makeCommand,
|
||||
name = 'Build Android',
|
||||
doStepIf = lambda step : isAndroid(step),
|
||||
|
||||
haltOnFailure = True,
|
||||
description = 'run make for project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'deploy'],
|
||||
doStepIf = lambda step : isDeploy(step) and isAndroid(step),
|
||||
name = 'deploy Android',
|
||||
haltOnFailure = True,
|
||||
description = 'deploy project ',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'release'],
|
||||
doStepIf = lambda step : isRelease(step) and isAndroid(step),
|
||||
name = 'release Android',
|
||||
haltOnFailure = True,
|
||||
description = 'release project, like push to store or online repository',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'distclean'],
|
||||
doStepIf = lambda step : isAndroid(step),
|
||||
name = 'clean Android makefiles',
|
||||
description = 'clean old makefiles ',
|
||||
),
|
||||
|
||||
|
||||
]
|
||||
|
||||
return list;
|
||||
|
||||
def WinSteps() :
|
||||
list = [
|
||||
steps.ShellCommand(
|
||||
command = [
|
||||
'qmake-windows',
|
||||
'-spec', 'win32-g++',
|
||||
"-r",
|
||||
"CONFIG+=qtquickcompiler",
|
||||
'ONLINE="~/repo"'
|
||||
],
|
||||
name = 'QMake Windows',
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isWin(step),
|
||||
description = 'create a make files for projects',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'clean'],
|
||||
doStepIf = lambda step : isClean(step) and isWin(step),
|
||||
name = 'clean Windows',
|
||||
description = 'clean old build data',
|
||||
),
|
||||
steps.Compile(
|
||||
command = base.makeCommand,
|
||||
name = 'Build Windows',
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isWin(step),
|
||||
|
||||
description = 'run make for project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'deploy'],
|
||||
doStepIf = lambda step : isDeploy(step) and isWin(step),
|
||||
name = 'deploy Windows',
|
||||
haltOnFailure = True,
|
||||
|
||||
description = 'deploy project ',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'release'],
|
||||
doStepIf = lambda step : isRelease(step) and isWin(step),
|
||||
name = 'release Windows',
|
||||
haltOnFailure = True,
|
||||
|
||||
description = 'release project, like push to store or online repository',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'distclean'],
|
||||
doStepIf = lambda step : isWin(step),
|
||||
name = 'clean Windows makefiles',
|
||||
description = 'clean old makefiles ',
|
||||
),
|
||||
]
|
||||
return list;
|
||||
|
||||
|
||||
def getFactory():
|
||||
factory = base.getFactory();
|
||||
|
||||
factory.addStep(
|
||||
steps.Git(
|
||||
repourl=util.Interpolate('%(prop:repository)s'),
|
||||
branch=util.Interpolate('%(prop:branch)s'),
|
||||
mode='full',
|
||||
method = 'fresh',
|
||||
submodules=True,
|
||||
name = 'git operations',
|
||||
description = 'operations of git like pull clone fetch',
|
||||
)
|
||||
);
|
||||
|
||||
factory.addSteps(LinuxSteps());
|
||||
factory.addSteps(WinSteps());
|
||||
factory.addSteps(AndroidSteps());
|
||||
|
||||
factory.addStep(
|
||||
steps.DirectoryUpload(
|
||||
workersrc = util.Interpolate('%(prop:copyFolder)s'),
|
||||
masterdest = destDir,
|
||||
url = destDirUrl,
|
||||
doStepIf = lambda step : isDeploy(step),
|
||||
name = 'copy buildet files',
|
||||
description = 'copy buildet files to shared folder',
|
||||
)
|
||||
);
|
||||
|
||||
factory.addStep(
|
||||
steps.ShellCommand(
|
||||
command= permission,
|
||||
name = 'set permission',
|
||||
haltOnFailure = True,
|
||||
|
||||
description = 'set permission for shared folder',
|
||||
)
|
||||
);
|
||||
|
||||
return factory
|
||||
|
||||
def getRepo():
|
||||
return "";
|
||||
|
||||
def getPropertyes():
|
||||
return [
|
||||
util.BooleanParameter(
|
||||
name = 'Windows',
|
||||
label = 'Windows version project',
|
||||
default = True
|
||||
),
|
||||
|
||||
util.BooleanParameter(
|
||||
name = 'Linux',
|
||||
label = 'Linux version project',
|
||||
default = True
|
||||
),
|
||||
|
||||
util.BooleanParameter(
|
||||
name = 'Android',
|
||||
label = 'Android version project',
|
||||
default = True
|
||||
),
|
||||
|
||||
util.BooleanParameter(
|
||||
name = 'clean',
|
||||
label = 'clean old build ',
|
||||
default = True
|
||||
),
|
||||
util.BooleanParameter(
|
||||
name = 'deploy',
|
||||
label = 'deploy project',
|
||||
default = True
|
||||
),
|
||||
util.BooleanParameter(
|
||||
name = 'test',
|
||||
label = 'test project ',
|
||||
default = True
|
||||
),
|
||||
util.BooleanParameter(
|
||||
name = 'release',
|
||||
label = 'release project',
|
||||
default = False
|
||||
),
|
||||
util.StringParameter(
|
||||
name = 'copyFolder',
|
||||
label = 'Folder with buildet data',
|
||||
default = "Distro"
|
||||
),
|
||||
|
||||
]
|
305
BuildBotLib/make.py
Normal file
305
BuildBotLib/make.py
Normal file
@ -0,0 +1,305 @@
|
||||
# This Python file uses the following encoding: utf-8
|
||||
|
||||
import BuildBotLib.basemodule as base
|
||||
from buildbot.plugins import secrets, util, steps
|
||||
from pathlib import Path
|
||||
import datetime
|
||||
import os
|
||||
import subprocess
|
||||
from BuildBotLib.secretManager import *
|
||||
|
||||
def isClean(step):
|
||||
return step.getProperty('clean');
|
||||
|
||||
def isDeploy(step):
|
||||
return step.getProperty('deploy');
|
||||
|
||||
def isRelease(step):
|
||||
return step.getProperty('release');
|
||||
|
||||
def isTest(step):
|
||||
return step.getProperty('test');
|
||||
|
||||
def isWin(step):
|
||||
return step.getProperty('Windows');
|
||||
|
||||
def isLinux(step):
|
||||
return step.getProperty('Linux');
|
||||
|
||||
def isAndroid(step):
|
||||
return step.getProperty('Android');
|
||||
|
||||
def destDirPrivate(props):
|
||||
repo = str(props.getProperty('repository'));
|
||||
now = datetime.datetime.now().strftime("(%H_%M)_%m-%d-%Y")
|
||||
|
||||
return repo[repo.rfind('/'): len(repo) - 4] + "/" + now;
|
||||
|
||||
@util.renderer
|
||||
def destDir(props):
|
||||
home = str(Path.home())
|
||||
|
||||
return home + '/shared/' + destDirPrivate(props);
|
||||
|
||||
@util.renderer
|
||||
def destDirUrl(props):
|
||||
path = destDirPrivate(props);
|
||||
return "http://quasarapp.ddns.net:3031" + path;
|
||||
|
||||
@util.renderer
|
||||
def permission(props):
|
||||
home = str(Path.home())
|
||||
return ["chmod", "-R", "775", home + '/shared']
|
||||
|
||||
def LinuxXMake() :
|
||||
|
||||
return steps.ShellCommand(
|
||||
command = [
|
||||
'qmake-linux',
|
||||
"-r",
|
||||
"CONFIG+=qtquickcompiler",
|
||||
'ONLINE="~/repo"'
|
||||
],
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isLinux(step),
|
||||
|
||||
name = 'QMake Linux',
|
||||
description = 'create a make files for projects',
|
||||
)
|
||||
|
||||
def WindowsXMake() :
|
||||
|
||||
return steps.ShellCommand(
|
||||
command = [
|
||||
'qmake-windows',
|
||||
'-spec', 'win32-g++',
|
||||
"-r",
|
||||
"CONFIG+=qtquickcompiler",
|
||||
'ONLINE="~/repo"'
|
||||
],
|
||||
name = 'QMake Windows',
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isWin(step),
|
||||
description = 'create a make files for projects',
|
||||
)
|
||||
|
||||
|
||||
@util.renderer
|
||||
def androidQmake(props):
|
||||
|
||||
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
|
||||
|
||||
command = [
|
||||
'qmake-android',
|
||||
'-spec', 'android-clang',
|
||||
"-r",
|
||||
"CONFIG+=qtquickcompiler",
|
||||
'SIGN_PATH="' + secret.getValue('SIGPATH') + '"',
|
||||
'SIGN_ALIES="quasarapp"',
|
||||
'SIGN_STORE_PASSWORD="' + secret.getValue('SIGPASS') + '"'
|
||||
|
||||
]
|
||||
|
||||
return command
|
||||
|
||||
|
||||
def AndroidXMake() :
|
||||
|
||||
return steps.ShellCommand(
|
||||
command = androidQmake,
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isAndroid(step),
|
||||
|
||||
name = 'QMake Android',
|
||||
description = 'create a make files for projects',
|
||||
)
|
||||
|
||||
|
||||
def LinuxSteps() :
|
||||
|
||||
list = [
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'clean'],
|
||||
doStepIf = lambda step : isClean(step) and isLinux(step),
|
||||
name = 'clean Linux',
|
||||
description = 'clean old build data',
|
||||
),
|
||||
steps.Compile(
|
||||
command = base.makeCommand,
|
||||
name = 'Build Linux',
|
||||
doStepIf = lambda step : isLinux(step),
|
||||
|
||||
haltOnFailure = True,
|
||||
description = 'run make for project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'deploy'],
|
||||
doStepIf = lambda step : isDeploy(step) and isLinux(step),
|
||||
name = 'deploy Linux',
|
||||
haltOnFailure = True,
|
||||
description = 'deploy project ',
|
||||
),
|
||||
steps.Compile(
|
||||
command= ['make', 'test'],
|
||||
doStepIf = lambda step : isTest(step) and isLinux(step),
|
||||
name = 'tests ',
|
||||
haltOnFailure = True,
|
||||
description = 'run autotests of project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'release'],
|
||||
doStepIf = lambda step : isRelease(step) and isLinux(step),
|
||||
name = 'release Linux',
|
||||
haltOnFailure = True,
|
||||
description = 'release project, like push to store or online repository',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'distclean'],
|
||||
doStepIf = lambda step : isLinux(step),
|
||||
name = 'clean Linux makefiles',
|
||||
description = 'clean old makefiles ',
|
||||
),
|
||||
|
||||
|
||||
]
|
||||
|
||||
return list;
|
||||
|
||||
def AndroidSteps() :
|
||||
|
||||
list = [
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'clean'],
|
||||
doStepIf = lambda step : isClean(step) and isAndroid(step),
|
||||
name = 'clean Android',
|
||||
description = 'clean old build data',
|
||||
),
|
||||
steps.Compile(
|
||||
command = base.makeCommand,
|
||||
name = 'Build Android',
|
||||
doStepIf = lambda step : isAndroid(step),
|
||||
|
||||
haltOnFailure = True,
|
||||
description = 'run make for project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'deploy'],
|
||||
doStepIf = lambda step : isDeploy(step) and isAndroid(step),
|
||||
name = 'deploy Android',
|
||||
haltOnFailure = True,
|
||||
description = 'deploy project ',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'release'],
|
||||
doStepIf = lambda step : isRelease(step) and isAndroid(step),
|
||||
name = 'release Android',
|
||||
haltOnFailure = True,
|
||||
description = 'release project, like push to store or online repository',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'distclean'],
|
||||
doStepIf = lambda step : isAndroid(step),
|
||||
name = 'clean Android makefiles',
|
||||
description = 'clean old makefiles ',
|
||||
),
|
||||
|
||||
|
||||
]
|
||||
|
||||
return list;
|
||||
|
||||
def WinSteps() :
|
||||
list = [
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'clean'],
|
||||
doStepIf = lambda step : isClean(step) and isWin(step),
|
||||
name = 'clean Windows',
|
||||
description = 'clean old build data',
|
||||
),
|
||||
steps.Compile(
|
||||
command = base.makeCommand,
|
||||
name = 'Build Windows',
|
||||
haltOnFailure = True,
|
||||
doStepIf = lambda step : isWin(step),
|
||||
|
||||
description = 'run make for project',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'deploy'],
|
||||
doStepIf = lambda step : isDeploy(step) and isWin(step),
|
||||
name = 'deploy Windows',
|
||||
haltOnFailure = True,
|
||||
|
||||
description = 'deploy project ',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command= ['make', 'release'],
|
||||
doStepIf = lambda step : isRelease(step) and isWin(step),
|
||||
name = 'release Windows',
|
||||
haltOnFailure = True,
|
||||
|
||||
description = 'release project, like push to store or online repository',
|
||||
),
|
||||
steps.ShellCommand(
|
||||
command = ['make', 'distclean'],
|
||||
doStepIf = lambda step : isWin(step),
|
||||
name = 'clean Windows makefiles',
|
||||
description = 'clean old makefiles ',
|
||||
),
|
||||
]
|
||||
return list;
|
||||
|
||||
|
||||
def getFactory():
|
||||
return base.getFactory();
|
||||
|
||||
def getRepo():
|
||||
return "";
|
||||
|
||||
def getPropertyes():
|
||||
return [
|
||||
util.BooleanParameter(
|
||||
name = 'Windows',
|
||||
label = 'Windows version project',
|
||||
default = True
|
||||
),
|
||||
|
||||
util.BooleanParameter(
|
||||
name = 'Linux',
|
||||
label = 'Linux version project',
|
||||
default = True
|
||||
),
|
||||
|
||||
util.BooleanParameter(
|
||||
name = 'Android',
|
||||
label = 'Android version project',
|
||||
default = True
|
||||
),
|
||||
|
||||
util.BooleanParameter(
|
||||
name = 'clean',
|
||||
label = 'clean old build ',
|
||||
default = True
|
||||
),
|
||||
util.BooleanParameter(
|
||||
name = 'deploy',
|
||||
label = 'deploy project',
|
||||
default = True
|
||||
),
|
||||
util.BooleanParameter(
|
||||
name = 'test',
|
||||
label = 'test project ',
|
||||
default = True
|
||||
),
|
||||
util.BooleanParameter(
|
||||
name = 'release',
|
||||
label = 'release project',
|
||||
default = False
|
||||
),
|
||||
util.StringParameter(
|
||||
name = 'copyFolder',
|
||||
label = 'Folder with buildet data',
|
||||
default = "Distro"
|
||||
),
|
||||
|
||||
]
|
@ -172,8 +172,8 @@ def getAndroidConfigOptions(props):
|
||||
list = [
|
||||
"-xplatform", "android-clang",
|
||||
"--disable-rpath",
|
||||
# "-android-ndk", "/home/andrei/Android/NDK/android-ndk-r19c",
|
||||
# "-android-sdk", "/home/andrei/Android/SDK",
|
||||
"-android-ndk", "/home/andrei/Android/NDK/android-ndk-r19c",
|
||||
"-android-sdk", "/home/andrei/Android/SDK",
|
||||
"-skip", "qttranslations",
|
||||
"-skip", "qtserialport",
|
||||
"-no-warnings-are-errors",
|
||||
|
Loading…
x
Reference in New Issue
Block a user