-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
meson_options.txt
24 lines (24 loc) · 1.43 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
option('enable_glfw', type: 'boolean', value: false,
description: 'Enable legacy GLFW backend')
option('disable_glx', type: 'boolean', value: false,
description: 'Disable GLX backend')
option('standalone', type: 'boolean', value: false,
description: 'Configure build to run without installation')
option('glad', type: 'boolean', value: false,
description: 'Download and build GLAD headers (non-reproducable)')
option('disable_obs', type: 'boolean', value: false,
description: 'Disable OBS Studio plugin support')
option('disable_config', type: 'boolean', value: true,
description: 'Skip building GLava GTK+ configuration tool')
option('shader_install_dir', type: 'string', value: '/etc/xdg',
description: 'GLSL config/module system install directory')
option('lua_install_dir', type: 'string', value: '/usr/share',
description: 'Location to install Lua modules for glava-config')
option('lua_version', type: 'string', value: '5.3',
description: 'Lua version to use for glava-config')
option('lua_implementation', type: 'string', value: 'lua',
description: 'Lua implementation to use (\'lua\' or \'luajit\')')
option('resource_install_dir', type: 'string', value: '/usr/share/glava',
description: 'Location to install generic GLava resources')
option('obs_plugin_install_dir', type: 'string', value: '/usr/lib/obs-plugins',
description: 'Location to install OBS plugin if enabled')