summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: fc3371c63ea81d34f456c257aad79d2601634e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
option('enable-docs',
       type: 'boolean', value: false,
       description: 'Enable generating the Epoxy API reference (depends on Doxygen)')
option('enable-glx',
       type: 'combo',
       choices: [ 'auto', 'yes', 'no' ],
       value: 'auto',
       description: 'Enable GLX support')
option('enable-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)')