Move VS 201x output property group opening tag into elements array to allow for overriding

This commit is contained in:
Jason Perkins 2014-07-22 16:34:40 -04:00
parent ccfc2b8b66
commit 65d1ddf211

View File

@ -179,14 +179,12 @@
m.elements.outputProperties = function(cfg)
if cfg.kind == p.UTILITY then
return {
m.propertyGroup,
m.outDir,
m.intDir,
m.extensionsToDeleteOnClean,
}
else
return {
m.propertyGroup,
m.linkIncremental,
m.ignoreImportLibrary,
m.outDir,
@ -203,6 +201,7 @@
function m.outputProperties(cfg)
if not vstudio.isMakefile(cfg) then
m.propertyGroup(cfg)
p.callArray(m.elements.outputProperties, cfg)
_p(1,'</PropertyGroup>')
end