summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: dc30e68b3b7174ee364bd5c67a45c2d48fbe82f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
option('docs',
       type: 'boolean', value: false,
       description: 'Enable generating the Epoxy API reference (depends on Doxygen)')
option('glx',
       type: 'combo',
       choices: [ 'auto', 'yes', 'no' ],
       value: 'auto',
       description: 'Enable GLX support')
option('egl',
       type: 'combo',
       choices: [ 'auto', 'yes', 'no' ],
       value: 'auto',
       description: 'Enable EGL support')
option('x11',
       type: 'boolean',
       value: true,
       description: 'Enable X11 support (GLX or EGL-X11)')
option('tests',
       type: 'boolean',
       value: true,
       description: 'Build the test suite')