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

Projucer: Specify standard LTCG instead of incremental (fast) in the VS link options to get rid of warning about not compiling with function-level linkage

This commit is contained in:
ed 2020-08-20 17:23:55 +01:00
parent 876aceed99
commit 0335d43b58

View file

@ -625,6 +625,9 @@ public:
link->createNewChildElement ("LargeAddressAware")->addTextElement ("true");
if (config.isLinkTimeOptimisationEnabled())
link->createNewChildElement ("LinkTimeCodeGeneration")->addTextElement ("UseLinkTimeCodeGeneration");
if (additionalDependencies.isNotEmpty())
link->createNewChildElement ("AdditionalDependencies")->addTextElement (additionalDependencies);