Added imagepath to set Xbox360 image file name (Jarod)

This commit is contained in:
Jason Perkins 2010-08-09 16:17:03 -04:00
parent f40e8a2c45
commit 1be943947a
3 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,7 @@
* Patch 3011940: Add support for MFC (JTAnderson)
* Bug 2997728: Project dependencies should be case-sensitive
* Fixed handling of icons in Xcode (bitshifter)
* Added imagepath to set Xbox360 image file name (Jarod)
-------

View File

@ -602,6 +602,9 @@ local vcproj = premake.vstudio.vcproj
if #cfg.imageoptions > 0 then
_p(4,'AdditionalOptions="%s"', table.concat(premake.esc(cfg.imageoptions), " "))
end
if cfg.imagepath ~= nil then
_p(4,'OutputFileName="%s"', premake.esc(path.translate(cfg.imagepath)))
end
_p(3,'/>')
elseif block == "DebuggerTool" then

View File

@ -117,6 +117,12 @@
}
},
imagepath =
{
kind = "path",
scope = "config",
},
imageoptions =
{
kind = "list",