mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-08-03 14:49:04 +00:00
fix: add wayland-dev to xrizer dependencies
This commit is contained in:
parent
93ea2501b4
commit
b174fab6bf
2 changed files with 14 additions and 0 deletions
|
@ -166,6 +166,8 @@ fn include_paths() -> Vec<String> {
|
|||
"/usr/include/ffmpeg/libpostproc".into(),
|
||||
"/usr/include/ffmpeg/libswresample".into(),
|
||||
"/usr/include/ffmpeg/libswscale".into(),
|
||||
// opensuse puts wayland-client.h here
|
||||
"/usr/include/wayland".into(),
|
||||
]
|
||||
}
|
||||
|
||||
|
|
|
@ -29,6 +29,18 @@ fn xrizer_deps() -> Vec<Dependency> {
|
|||
(LinuxDistro::Suse, "clang19-devel".into()),
|
||||
]),
|
||||
},
|
||||
Dependency {
|
||||
name: "wayland-dev".into(),
|
||||
dep_type: DepType::Include,
|
||||
filename: "wayland-client.h".into(),
|
||||
packages: HashMap::from([
|
||||
(LinuxDistro::Arch, "wayland".into()),
|
||||
(LinuxDistro::Debian, "libwayland-dev".into()),
|
||||
(LinuxDistro::Fedora, "wayland-devel".into()),
|
||||
(LinuxDistro::Gentoo, "dev-libs/wayland".into()),
|
||||
(LinuxDistro::Suse, "wayland-devel".into()),
|
||||
]),
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue