Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <none@none>2009-04-29 22:51:15 +0400
committerstarkos <none@none>2009-04-29 22:51:15 +0400
commit05f015bfe71fbd48af9ef83b7935877790cb22f5 (patch)
tree921d1f7b337e21a215d2f775a1ecd2d3af9f9e4a /src/base/globals.lua
parent77d9f2586cb8117f5d15993d39675521d2301895 (diff)
Added --platform argument
Diffstat (limited to 'src/base/globals.lua')
-rw-r--r--src/base/globals.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/base/globals.lua b/src/base/globals.lua
index 3359e70..e1f1f37 100644
--- a/src/base/globals.lua
+++ b/src/base/globals.lua
@@ -26,6 +26,19 @@
premake.options = { }
+-- The list of supported platforms; also update list in cmdline.lua
+
+ premake.platforms =
+ {
+ Native = { "" },
+ x32 = { "32" },
+ x64 = { "64" },
+ Universal = { "univ" },
+ Universal32 = { "univ32" },
+ Universal64 = { "univ64" },
+ Xbox360 = { "xbox360" },
+ }
+
--
-- A replacement for Lua's built-in dofile() function, this one sets the