-
Notifications
You must be signed in to change notification settings - Fork 3
/
meson_options.txt
13 lines (13 loc) · 1.59 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
option('bundle', type : 'boolean', value : false, description: 'Build a macOS bundle')
option('source-only', type : 'boolean', value : false, description: 'Configure source files only, doesn\'t checks for dependencies')
option('portable', type : 'boolean', value : false, description: 'Portable install')
option('renderer', type : 'boolean', value : false, description: 'Use SDL renderer')
option('dirmonitor_backend', type : 'combo', value : '', choices : ['', 'inotify', 'fsevents', 'kqueue', 'win32', 'dummy'], description: 'define what dirmonitor backend to use')
option('arch_tuple', type : 'string', value : '', description: 'Specify a custom architecture tuple')
option('use_system_lua', type : 'boolean', value : false, description: 'Prefer System Lua over a the meson wrap')
option('wasm_preload_files', type : 'boolean', value : true, description: 'Preload files into the output')
option('wasm_build_bundle', type : 'boolean', value : false, description: 'Build the bundle with file_packager (requires Python)')
option('wasm_install_plugins', type : 'array', value : ['meta_languages', 'meta_colors', 'settings', 'open_ext'], description: 'Plugins to install when bundling')
option('wasm_asyncify_advise', type : 'boolean', value : false, description: 'Check which functions has been instrumented by Asyncify and why')
option('wasm_debug', type : 'combo', choices: ['dwarf', 'sourcemap', 'none'], value : 'none', description: 'Method to support debug information in generated output (DWARF built-in or external sourcemap)')
option('wasm_sourcemap_base', type : 'string', description: 'The base URL of the sourcemap')