CMake: Switch generator/extraGenerator

Swapped that around in the last commit:-/

Change-Id: I2d31af86aecd8e9e6469c9fd573f4dea809fca2a
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Tobias Hunger
2016-09-30 14:31:28 +02:00
parent bb8cd10a04
commit 01903c8c72

View File

@@ -276,7 +276,7 @@ QStringList CMakeGeneratorKitInformation::generatorArguments(const Kit *k)
if (info.extraGenerator.isEmpty()) {
result.append("-G" + info.generator);
} else {
result.append("-G" + info.generator + " - " + info.extraGenerator);
result.append("-G" + info.extraGenerator + " - " + info.generator);
}
if (!info.platform.isEmpty())