mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 15:00:05 +01:00
12 lines
292 B
Meson
12 lines
292 B
Meson
zshcompletiondir = get_option('zshcompletiondir')
|
|
if zshcompletiondir == ''
|
|
zshcompletiondir = join_paths(get_option('datadir'), 'zsh', 'site-functions')
|
|
endif
|
|
|
|
if zshcompletiondir != 'no'
|
|
install_data(
|
|
'_libinput',
|
|
install_dir: zshcompletiondir,
|
|
install_mode: 'rw-r--r--',
|
|
)
|
|
endif
|