From d93a07a58d50a50550a606ea58321f60fa627385 Mon Sep 17 00:00:00 2001 From: Justin Gottula Date: Sun, 21 Jan 2018 14:22:23 -0800 Subject: [PATCH] Disable link-time code generation for MSVC Debug builds Every time I do a debug build, I get a warning message from the linker telling me that /LTCG is doing nothing and that removing it from the options will speed up the linking process. (I believe this is due to LTCG being incompatible with incremental linking; and AFAIK incremental linking is enabled in debug builds by default.) --- openrct2.common.props | 1 - 1 file changed, 1 deletion(-) diff --git a/openrct2.common.props b/openrct2.common.props index c441455d66..eeb2fdb95c 100644 --- a/openrct2.common.props +++ b/openrct2.common.props @@ -73,7 +73,6 @@ true - UseFastLinkTimeCodeGeneration