mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2025-02-18 09:42:07 +01:00
* move to hw-s * hyprland-share-picker: add missing sources to meson, format CMake * CMake: bump hw-s version * CMake: fix protocolnew external protos * CMake: get wayland.xml from wayland-scanner * Nix: add missing deps * Meson: use hw-s for protocols, add hyprutils --------- Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
20 lines
521 B
Meson
20 lines
521 B
Meson
globber = run_command('find', '.', '-name', '*.cpp', check: true)
|
|
src = globber.stdout().strip().split('\n')
|
|
|
|
executable('xdg-desktop-portal-hyprland',
|
|
[src],
|
|
dependencies: [
|
|
client_protos,
|
|
dependency('gbm'),
|
|
dependency('hyprlang'),
|
|
dependency('hyprutils'),
|
|
dependency('libdrm'),
|
|
dependency('libpipewire-0.3'),
|
|
dependency('sdbus-c++'),
|
|
dependency('threads'),
|
|
dependency('wayland-client'),
|
|
],
|
|
include_directories: inc,
|
|
install: true,
|
|
install_dir: get_option('libexecdir')
|
|
)
|