summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/genie/src/base/globals.lua
diff options
context:
space:
mode:
author Julian Sikorski <belegdol+github@gmail.com>2019-09-29 15:30:18 +0200
committer R. Belmont <rb6502@users.noreply.github.com>2019-09-29 09:30:18 -0400
commited2b7e5ef1626c0d6318b6ea71897efbb4356277 (patch)
tree62a84a4a2c804922839dbfa60ec664b84beaaee0 /3rdparty/genie/src/base/globals.lua
parent1bd1288c9e17bdba9544d1e56be7618106fece7e (diff)
Synced with GENie upstream revision e78d6c1 (#5631)
* Synced with GENie upstream revision e78d6c1 * Add Visual Studio 2019 support * Fix hardcoded -m64 * Switch appveyor to Visual Studio 2019 * Fix genie being built as 32-bit * MSVC build is known to be broken currently. Let it fail until all the known issues are fixed. * Update the packages before building * Build with 3 threads Appveyor VMs have only 2 cores and 8 GB RAM. * Enable caching of pacman cache
Diffstat (limited to '3rdparty/genie/src/base/globals.lua')
-rw-r--r--3rdparty/genie/src/base/globals.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/3rdparty/genie/src/base/globals.lua b/3rdparty/genie/src/base/globals.lua
index 9a5e19c7025..d24b66f163d 100644
--- a/3rdparty/genie/src/base/globals.lua
+++ b/3rdparty/genie/src/base/globals.lua
@@ -80,6 +80,31 @@
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",
+ },
}