aboutsummaryrefslogtreecommitdiffstats
path: root/meson.options
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2024-01-01 03:44:59 -0600
committerLibravatar bigfoot547 <[email protected]>2024-01-01 03:44:59 -0600
commit12d53b3661231650c7563be9ddd2cd3cbfafeec1 (patch)
treeebfbc4220fa64e139df84714928bd67d51231232 /meson.options
parentdownloads versions now (diff)
now loads libraries
Diffstat (limited to 'meson.options')
-rw-r--r--meson.options15
1 files changed, 15 insertions, 0 deletions
diff --git a/meson.options b/meson.options
new file mode 100644
index 0000000..ea5e01e
--- /dev/null
+++ b/meson.options
@@ -0,0 +1,15 @@
+option('launcher_os', type : 'combo',
+ choices : [ 'auto', 'windows', 'linux', 'osx' ], value : 'auto',
+ description : 'OS name to use for library fetching')
+
+option('launcher_arch_bits', type : 'combo',
+ choices : [ 'auto', '32', '64' ], value : 'auto',
+ description : 'system architecture bits')
+
+option('launcher_arch', type : 'string',
+ value : '',
+ description : 'launcher architecture')
+
+option('launcher_jre_arch', type : 'combo',
+ value : 'auto', choices : [ 'auto', 'gamecore', 'linux', 'linux-i386', 'mac-os', 'mac-os-arm64', 'windows-x86', 'windows-x64', 'windows-arm64' ],
+ description : 'launcher JRE architecture')