From e57f4688e7fa307a02e5352f392c9946dcd05c42 Mon Sep 17 00:00:00 2001 From: Jérôme Leclercq Date: Thu, 6 Jan 2022 17:11:44 +0100 Subject: Add $(VC_IncludePath);$(WindowsSDK_IncludePath); at the end of --- xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua index 293896f8f..2cc84ff52 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua @@ -248,7 +248,7 @@ function _make_configurations(vcxprojfile, vsinfo, target) flag:gsub("[%-/]external:I(.*)", function (dir) table.insert(externaldirs, dir) end) end if #externaldirs > 0 then - vcxprojfile:print("%s;", table.concat(externaldirs, ";")) + vcxprojfile:print("%s;$(VC_IncludePath);$(WindowsSDK_IncludePath);", table.concat(externaldirs, ";")) end vcxprojfile:leave("") end -- cgit v1.3.1