From a1f9874f4639bc64a32b2d1159e8940414120cf2 Mon Sep 17 00:00:00 2001 From: Rory Driscoll Date: Mon, 14 May 2018 22:10:51 -0700 Subject: [PATCH] Fix missing DebugInformationFormat when symbols are set to full --- modules/vstudio/vs2010_vcxproj.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/vstudio/vs2010_vcxproj.lua b/modules/vstudio/vs2010_vcxproj.lua index 6a19c2731f..5117f0a1d0 100644 --- a/modules/vstudio/vs2010_vcxproj.lua +++ b/modules/vstudio/vs2010_vcxproj.lua @@ -1579,7 +1579,7 @@ function m.debugInformationFormat(cfg) local value local tool, toolVersion = p.config.toolset(cfg) - if (cfg.symbols == p.ON) or (cfg.symbols == "FastLink") then + if (cfg.symbols == p.ON) or (cfg.symbols == "FastLink") or (cfg.symbols == "Full") then if cfg.debugformat == "c7" then value = "OldStyle" elseif (cfg.architecture == "x86_64" and _ACTION < "vs2015") or