1
2
3
4
5
6
7
8
9
10
11
12
13
14
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')
|