mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-02 03:20:06 +00:00
Projucer: Add VS debug information format setting to debug builds and release builds with forced generation of debug symbols
This commit is contained in:
parent
bf0881bfb2
commit
ea00d6201a
1 changed files with 2 additions and 3 deletions
|
|
@ -254,7 +254,7 @@ public:
|
|||
StringArray (debugInfoOptions),
|
||||
Array<var> (debugInfoValues)),
|
||||
"The type of debugging information created for your program for this configuration."
|
||||
" This will only be used in a debug configuration with no optimisation or a release configuration"
|
||||
" This will always be used in a debug configuration and will be used in a release configuration"
|
||||
" with forced generation of debug symbols.");
|
||||
}
|
||||
|
||||
|
|
@ -557,8 +557,7 @@ public:
|
|||
|
||||
cl->createNewChildElement ("Optimization")->addTextElement (getOptimisationLevelString (config.getOptimisationLevelInt()));
|
||||
|
||||
if ((isDebug || config.shouldGenerateDebugSymbols())
|
||||
&& config.getOptimisationLevelInt() <= optimisationOff)
|
||||
if (isDebug || config.shouldGenerateDebugSymbols())
|
||||
{
|
||||
cl->createNewChildElement ("DebugInformationFormat")
|
||||
->addTextElement (config.getDebugInformationFormatString());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue