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

Revert recent change to -after CONFIG

This breaks checking for release or debug mode in the .pro file
parent 390fff61
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ QStringList QMakeStep::arguments(const QString &buildConfiguration) ...@@ -85,7 +85,7 @@ QStringList QMakeStep::arguments(const QString &buildConfiguration)
if (!(defaultBuildConfiguration & QtVersion::DebugBuild) && (projectBuildConfiguration & QtVersion::DebugBuild)) if (!(defaultBuildConfiguration & QtVersion::DebugBuild) && (projectBuildConfiguration & QtVersion::DebugBuild))
configarguments << "CONFIG+=debug"; configarguments << "CONFIG+=debug";
if (!configarguments.isEmpty()) if (!configarguments.isEmpty())
arguments << "-after" << configarguments; arguments << configarguments;
} else { } else {
arguments << "CONFIG+=debug_and_release"; arguments << "CONFIG+=debug_and_release";
} }
......
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