You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am updating the premake repo we are using here at my company and after running our internal regression tests, every one of our tests fail because <DCompile> has been added to every vcxproj that premake generates.
We aren't compiling any D sources, so I am a little surprised that this should be a default setting for every visual studio project.
The text was updated successfully, but these errors were encountered:
ratzlaff
changed the title
Unnecessary<DCompile> tags being added to generated vcxproj
New <DCompile> tags being added to every vcxproj
May 29, 2018
Yeah, I had the same issue yesterday. I just removed the d module from Premake _modules.lua before building it.
You can also override the dCompile function with this:
function m.dCompile(cfg)
if p.config.hasFile(cfg, path.isdfile) then
p.push('<DCompile>')
p.callArray(m.elements.dCompile, cfg)
p.pop('</DCompile>')
end
end
I am updating the premake repo we are using here at my company and after running our internal regression tests, every one of our tests fail because
<DCompile>
has been added to every vcxproj that premake generates.We aren't compiling any D sources, so I am a little surprised that this should be a default setting for every visual studio project.
The text was updated successfully, but these errors were encountered: