mkxp-z/meson_options.txt

23 lines
2.1 KiB
Meson
Raw Normal View History

option('mri_version', type: 'string', value: '3.1', description: 'Version of MRI to link with')
2020-02-25 11:35:30 +01:00
option('mri_includes', type: 'string', value: '', description: 'Ruby manual include path')
option('mri_libpath', type: 'string', value: '', description: 'Ruby manual lib path')
option('mri_library', type: 'string', value: '', description: 'Ruby manual link name')
2020-04-30 03:59:19 +02:00
option('force32', type: 'boolean', value: false, description: 'Force compiler to build a 32-bit executable')
2019-07-31 21:33:02 +02:00
option('cxx11_experimental', type: 'boolean', value: false, description: 'Toggles between using ghc/filesystem or C++11 <experimental/filesystem>')
option('shared_fluid', type: 'boolean', value: true, description: 'Dynamically link fluidsynth at build time')
option('cjk_fallback_font', type: 'boolean', value: false, description: 'Use WenQuanYi Micro Hei as the fallback font')
option('use_miniffi', type: 'boolean', value: true, description: 'Enable MiniFFI Ruby module (Win32API)')
option('enable-https', type: 'boolean', value: true, description: 'Support HTTPS for get/post requests. Requires OpenSSL.')
2019-09-04 11:48:23 +02:00
option('workdir_current', type: 'boolean', value: false, description: 'Keep current directory on startup')
option('windows_resource_directory', type: 'string', value: 'windows', description: 'Path to Windows EXE resource directory')
2021-01-01 13:44:25 +01:00
option('static_executable', type: 'boolean', value: true, description: 'Build a static executable (Windows-only)')
2021-06-26 21:06:05 +02:00
option('appimagekit_path', type: 'string', value: '', description: 'Path to AppImageTool, used for building AppImages')
option('appimage', type: 'boolean', value: false, description: 'Whether to install to an AppImage or just copy everything')
option('steamworks_path', type: 'string', value: '', description: 'Path to Steamworks SDK')
option('steam_appid', type: 'string', value: '', description: 'Steam AppID. Set this to use SteamAPI_RestartAppIfNecessary')
2021-03-16 04:13:25 +01:00
option('steamshim_debug', type: 'boolean', value: false, description: 'Whether to show Steamshim debug messages in the console')
2021-01-01 13:44:25 +01:00
option('gfx_backend', type: 'combo', value: 'gl', choices: ['gl', 'gles'], description: 'Graphics rendering API to use.')