mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 17:20:04 +01:00
13 lines
292 B
Meson
13 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
|