Android: Debugger: Avoid warning regarding release build

This is just a workaround to avoid the warning of having a release
build although building debug. In practice the validation should
be done on the main library instead of the app_process of an
Android executable.

Change-Id: I4fe4ccc790d9e373a11f851c8216362188a97b85
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
Christian Stenger
2015-03-31 07:55:00 +02:00
committed by hjk
parent 1d0582ecdb
commit 3dc6510d34
3 changed files with 7 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ public:
startMode(NoStartMode),
closeMode(KillAtClose),
useCtrlCStub(false),
skipExecutableValidation(false),
testCase(0)
{}
@@ -157,6 +158,9 @@ public:
QString remoteExecutable;
bool useCtrlCStub;
// Used by Android to avoid false positives on warnOnRelease
bool skipExecutableValidation;
// For Debugger testing.
int testCase;
};