1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer (MSVC): Avoid generating debug info when this info would be thrown away at link time

This commit is contained in:
reuk 2025-05-29 14:17:01 +01:00
parent 4ec935c709
commit 6fb4d820a2
No known key found for this signature in database

View file

@ -1087,7 +1087,7 @@ public:
const auto debugInfoFormat = isDebug || config.shouldGenerateDebugSymbols()
? config.getDebugInformationFormatString()
: "OldStyle";
: "None";
cl->createNewChildElement ("DebugInformationFormat")->addTextElement (debugInfoFormat);