diff options
Diffstat (limited to '3rdparty/genie/src/base/globals.lua')
-rw-r--r-- | 3rdparty/genie/src/base/globals.lua | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/3rdparty/genie/src/base/globals.lua b/3rdparty/genie/src/base/globals.lua index 9a5e19c7025..cb6c0f089b0 100644 --- a/3rdparty/genie/src/base/globals.lua +++ b/3rdparty/genie/src/base/globals.lua @@ -67,6 +67,11 @@ cfgsuffix = "ARM", iscrosscompiler = true, }, + ARM64 = + { + cfgsuffix = "ARM64", + iscrosscompiler = true, + }, Orbis = { cfgsuffix = "orbis", @@ -80,6 +85,46 @@ nosharedlibs = true, namestyle = "windows", }, + TegraAndroid = + { + cfgsuffix = "tegraandroid", + iscrosscompiler = true, + namestyle = "TegraAndroid", + }, + NX32 = + { + cfgsuffix = "nx32", + iscrosscompiler = true, + namestyle = "NX", + }, + NX64 = + { + cfgsuffix = "nx64", + iscrosscompiler = true, + namestyle = "NX", + }, + Emscripten = + { + cfgsuffix = "emscripten", + iscrosscompiler = true, + nosharedlibs = true, + namestyle = "Emscripten", + }, + ["gdk-desktop"] = + { + cfgsuffix = "gdk-desktop", + namestyle = "windows", + }, + ["gdk-xboxone"] = + { + cfgsuffix = "gdk-xboxone", + namestyle = "windows", + }, + ["gdk-scarlett"] = + { + cfgsuffix = "gdk-scarlett", + namestyle = "windows", + }, } |