Removed deprecated --platform argument

This commit is contained in:
Jason Perkins 2012-11-27 09:49:38 -05:00
parent cba537a825
commit 25ba92b048
2 changed files with 2 additions and 19 deletions

View File

@ -102,9 +102,8 @@
if (not ok) then error("Error: " .. err, 0) end
-- Quick hack: disable the old configuration baking logic for the new
-- next-gen actions; this code will go away when everything has been
-- ported to the new API
-- "Bake" the project information, preparing it for use by the action
print("Building configurations...")
premake.solution.bakeall()

View File

@ -59,22 +59,6 @@
{ "windows", "Microsoft Windows" },
}
}
newoption
{
trigger = "platform",
value = "VALUE",
description = "Add target architecture (if supported by action)",
allowed = {
{ "x32", "32-bit" },
{ "x64", "64-bit" },
{ "universal", "Mac OS X Universal, 32- and 64-bit" },
{ "universal32", "Mac OS X Universal, 32-bit only" },
{ "universal64", "Mac OS X Universal, 64-bit only" },
{ "ps3", "Playstation 3 (experimental)" },
{ "xbox360", "Xbox 360 (experimental)" },
}
}
newoption
{