Skip to content
Snippets Groups Projects
Commit 19bba275 authored by dt's avatar dt
Browse files

Fix build & run for projects without buildsteps

parent 04b3eda8
No related merge requests found
......@@ -189,8 +189,10 @@ void BuildManager::gotoTaskWindow()
void BuildManager::startBuildQueue()
{
if (m_buildQueue.isEmpty())
if (m_buildQueue.isEmpty()) {
emit buildQueueFinished(true);
return;
}
if (!m_running) {
// Progress Reporting
Core::ProgressManager *progressManager = Core::ICore::instance()->progressManager();
......
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