forked from qt-creator/qt-creator
Android: Fix in source builds with Qt 5.2
Now the build directory is by default android-build, so by default the source and build directory don't clash anymore. Task-number: QTCREATORBUG-10661 Change-Id: I054bd3790f9bc9720536aac301bee192cb9f0429 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
This commit is contained in:
@@ -34,6 +34,7 @@
|
||||
|
||||
#include "javaparser.h"
|
||||
#include "androidmanager.h"
|
||||
#include "androidconstants.h"
|
||||
|
||||
#include <utils/qtcassert.h>
|
||||
#include <utils/qtcprocess.h>
|
||||
@@ -232,7 +233,7 @@ bool AndroidDeployQtStep::init()
|
||||
else if (m_deployAction == BundleLibrariesDeployment)
|
||||
deploymentMethod = QLatin1String("bundled");
|
||||
|
||||
QString outputDir = bc->buildDirectory().appendPath(QLatin1String("android")).toString();
|
||||
QString outputDir = bc->buildDirectory().appendPath(QLatin1String(Constants::ANDROID_BUILDDIRECTORY)).toString();
|
||||
|
||||
QStringList arguments;
|
||||
arguments << QLatin1String("--input")
|
||||
|
||||
Reference in New Issue
Block a user