Skip to content
Snippets Groups Projects
Commit 774c2ec2 authored by Kai Koehne's avatar Kai Koehne
Browse files

Debugger: Allow pure qml debugging if no C++ debugger is configured

Don't complain e.g. about a missing cdb debugger if the user doesn't
want to debug C++ anyway.

Task-number: QTCREATORBUG-2376
Reviewed-by: hjk
parent 2c0dae7d
No related branches found
No related tags found
No related merge requests found
...@@ -537,6 +537,9 @@ bool DebuggerRunControl::checkDebugConfiguration(int toolChain, ...@@ -537,6 +537,9 @@ bool DebuggerRunControl::checkDebugConfiguration(int toolChain,
bool success = true; bool success = true;
if (!(DebuggerPlugin::instance()->activeLanguages() & CppLanguage))
return success;
switch(toolChain) { switch(toolChain) {
case ProjectExplorer::ToolChain::GCC: case ProjectExplorer::ToolChain::GCC:
case ProjectExplorer::ToolChain::LINUX_ICC: case ProjectExplorer::ToolChain::LINUX_ICC:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment