forked from qt-creator/qt-creator
Support deployment to android-no-sdk platform
Change-Id: Ia7dad81e4998e04cbcda51de420ca677f56aa63f Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
committed by
Kai Koehne
parent
b079d623e8
commit
139c761338
@@ -22,7 +22,23 @@ for(deploymentfolder, DEPLOYMENTFOLDERS) {
|
||||
|
||||
MAINPROFILEPWD = $$PWD
|
||||
|
||||
android {
|
||||
android-no-sdk {
|
||||
for(deploymentfolder, DEPLOYMENTFOLDERS) {
|
||||
item = item$${deploymentfolder}
|
||||
itemfiles = $${item}.files
|
||||
$$itemfiles = $$eval($${deploymentfolder}.source)
|
||||
itempath = $${item}.path
|
||||
$$itempath = /data/user/qt/$$eval($${deploymentfolder}.target)
|
||||
export($$itemfiles)
|
||||
export($$itempath)
|
||||
INSTALLS += $$item
|
||||
}
|
||||
|
||||
target.path = /data/user/qt
|
||||
|
||||
export(target.path)
|
||||
INSTALLS += target
|
||||
} else:android {
|
||||
for(deploymentfolder, DEPLOYMENTFOLDERS) {
|
||||
item = item$${deploymentfolder}
|
||||
itemfiles = $${item}.files
|
||||
|
||||
@@ -57,7 +57,7 @@ const QString AbstractMobileApp::ProFileComment(QLatin1String("#"));
|
||||
const QString AbstractMobileApp::DeploymentPriFileName(QLatin1String("deployment.pri"));
|
||||
const QString AbstractMobileApp::FileChecksum(QLatin1String("checksum"));
|
||||
const QString AbstractMobileApp::FileStubVersion(QLatin1String("version"));
|
||||
const int AbstractMobileApp::StubVersion = 8;
|
||||
const int AbstractMobileApp::StubVersion = 9;
|
||||
|
||||
AbstractMobileApp::AbstractMobileApp()
|
||||
: QObject()
|
||||
|
||||
Reference in New Issue
Block a user