summaryrefslogtreecommitdiff
path: root/xmake/plugins
diff options
context:
space:
mode:
authorJérôme Leclercq <[email protected]>2022-01-06 17:11:44 +0100
committerJérôme Leclercq <[email protected]>2022-01-06 17:11:44 +0100
commite57f4688e7fa307a02e5352f392c9946dcd05c42 (patch)
tree6d100b8717a132f0bce24c43bbdd42971053e969 /xmake/plugins
parent00c8c18e853766905f99759795c4fb9ac74ef467 (diff)
Add $(VC_IncludePath);$(WindowsSDK_IncludePath); at the end of <ExternalIncludePath>
Diffstat (limited to 'xmake/plugins')
-rw-r--r--xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua2
1 files changed, 1 insertions, 1 deletions
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("<ExternalIncludePath>%s;</ExternalIncludePath>", table.concat(externaldirs, ";"))
+ vcxprojfile:print("<ExternalIncludePath>%s;$(VC_IncludePath);$(WindowsSDK_IncludePath);</ExternalIncludePath>", table.concat(externaldirs, ";"))
end
vcxprojfile:leave("</PropertyGroup>")
end