QMake project manager: add fallthrough comment

Change-Id: Icdac22ec69635675fbcd970fcc6215484bdecacd
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Giuseppe D'Angelo
2016-10-10 16:28:09 +01:00
committed by Tobias Hunger
parent 76b76f2723
commit 64e92b1ea0

View File

@@ -93,6 +93,7 @@ void QtProjectParameters::writeProFile(QTextStream &str) const
case ConsoleApp:
// Mac: Command line apps should not be bundles
str << "CONFIG += console\nCONFIG -= app_bundle\n\n";
// fallthrough
case GuiApp:
str << "TEMPLATE = app\n";
break;