diff options
author | David Robillard <d@drobilla.net> | 2023-05-27 12:54:07 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-27 12:55:10 -0400 |
commit | 580584e896abfa9324e58c0fad39476cb4cc077c (patch) | |
tree | 665a9860c15cb1f39ea64df60553de996911f141 /meson_options.txt | |
parent | 5424d37e388fbc68343d05acffaed29b7698dd9c (diff) | |
download | pugl-580584e896abfa9324e58c0fad39476cb4cc077c.tar.gz pugl-580584e896abfa9324e58c0fad39476cb4cc077c.tar.bz2 pugl-580584e896abfa9324e58c0fad39476cb4cc077c.zip |
X11: Add options for XCursor, XRandR, and XSync support
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index fb4ae7d..5165e07 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -27,3 +27,12 @@ option('tests', type: 'feature', value: 'auto', yield: true, option('vulkan', type: 'feature', value: 'auto', description: 'Enable support for the Vulkan graphics API') + +option('xcursor', type: 'feature', value: 'auto', + description: 'Support changing the cursor on X11') + +option('xrandr', type: 'feature', value: 'auto', + description: 'Support accessing the refresh rate on X11') + +option('xsync', type: 'feature', value: 'auto', + description: 'Support timers on X11') |