Debugger: add python debugger setting in run configuration

Change-Id: Ifa5d72566007e0bb006523433dcef97689677fbf
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
David Schulz
2023-11-29 15:08:48 +01:00
committed by hjk
parent 5034936333
commit eb740bdd95
11 changed files with 143 additions and 131 deletions

View File

@@ -22,6 +22,7 @@ public:
bool useCppDebugger() const;
bool useQmlDebugger() const;
bool usePythonDebugger() const;
void setUseQmlDebugger(bool value);
bool useMultiProcess() const;
void setUseMultiProcess(bool on);
@@ -33,6 +34,7 @@ public:
{
bool useCppDebugger;
bool useQmlDebugger;
bool usePythonDebugger;
bool useMultiProcess;
QString overrideStartup;
};
@@ -40,6 +42,7 @@ public:
private:
Utils::TriStateAspect *m_cppAspect;
Utils::TriStateAspect *m_qmlAspect;
Utils::TriStateAspect *m_pythonAspect;
Utils::BoolAspect *m_multiProcessAspect;
Utils::StringAspect *m_overrideStartupAspect;
ProjectExplorer::Target *m_target;