forked from qt-creator/qt-creator
Use qmake -after CONFIG... instead of just CONFIG...
Is apparently preferred.
This commit is contained in:
@@ -84,7 +84,8 @@ QStringList QMakeStep::arguments(const QString &buildConfiguration)
|
||||
configarguments << "CONFIG+=release";
|
||||
if (!(defaultBuildConfiguration & QtVersion::DebugBuild) && (projectBuildConfiguration & QtVersion::DebugBuild))
|
||||
configarguments << "CONFIG+=debug";
|
||||
arguments << configarguments;
|
||||
if (!configarguments.isEmpty())
|
||||
arguments << "-after" << configarguments;
|
||||
} else {
|
||||
arguments << "CONFIG+=debug_and_release";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user