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-05-01 23:50:45 +0400
committerstarkos <none@none>2009-05-01 23:50:45 +0400
commit043c3dc3f7d5b6714d1e3f8ede529d960fcc09bc (patch)
treeff76dd64c2561cb3db5a9384221ad370f0629637 /src/base/globals.lua
parent05f015bfe71fbd48af9ef83b7935877790cb22f5 (diff)
Makefile support for PS3
Diffstat (limited to 'src/base/globals.lua')
-rw-r--r--src/base/globals.lua42
1 files changed, 35 insertions, 7 deletions
diff --git a/src/base/globals.lua b/src/base/globals.lua
index e1f1f37..c261538 100644
--- a/src/base/globals.lua
+++ b/src/base/globals.lua
@@ -30,13 +30,41 @@
premake.platforms =
{
- Native = { "" },
- x32 = { "32" },
- x64 = { "64" },
- Universal = { "univ" },
- Universal32 = { "univ32" },
- Universal64 = { "univ64" },
- Xbox360 = { "xbox360" },
+ Native =
+ {
+ cfgsuffix = "",
+ },
+ x32 =
+ {
+ cfgsuffix = "32",
+ },
+ x64 =
+ {
+ cfgsuffix = "64",
+ },
+ Universal =
+ {
+ cfgsuffix = "unix",
+ },
+ Universal32 =
+ {
+ cfgsuffix = "univ32",
+ },
+ Universal64 =
+ {
+ cfgsuffix = "univ64",
+ },
+ PS3 =
+ {
+ cfgsuffix = "ps3",
+ iscrosscompiler = true,
+ nosharedlibs = true,
+ },
+ Xbox360 =
+ {
+ cfgsuffix = "xbox360",
+ iscrosscompiler = true,
+ },
}