make it possible to disable debug information in vcxproj files

Task-number: QTBUG-32885

Change-Id: I53a2208935a1c52bc7ca757651df6a0125979787
Reviewed-by: Andy Shaw <andy.shaw@digia.com>
This commit is contained in:
Joerg Bornemann 2013-09-24 15:44:37 +02:00 committed by The Qt Project
parent 57e1c9a7bd
commit 7c3efdfb6a

View File

@ -912,9 +912,10 @@ static inline QString toString(debugOption option)
{
switch (option) {
case debugUnknown:
case debugDisabled:
case debugLineInfoOnly:
break;
case debugDisabled:
return "None";
case debugOldStyleInfo:
return "OldStyle";
case debugEditAndContinue: