mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-08-03 22:58:44 +00:00
feat: add libglvnd dep to basalt
This commit is contained in:
parent
c592fc5917
commit
495ffef93b
1 changed files with 13 additions and 0 deletions
|
@ -10,6 +10,19 @@ fn basalt_deps() -> Vec<Dependency> {
|
||||||
dep_gpp(),
|
dep_gpp(),
|
||||||
dep_cmake(),
|
dep_cmake(),
|
||||||
dep_ninja(),
|
dep_ninja(),
|
||||||
|
Dependency {
|
||||||
|
name: "libglvnd-dev".into(),
|
||||||
|
dep_type: DepType::Include,
|
||||||
|
filename: "GL/gl.h".into(),
|
||||||
|
packages: HashMap::from([
|
||||||
|
(LinuxDistro::Arch, "libglvnd".into()),
|
||||||
|
(LinuxDistro::Debian, "libglvnd-dev".into()),
|
||||||
|
(LinuxDistro::Fedora, "libglvnd-devel".into()),
|
||||||
|
// WARN: can't find anything exact for alpine, mesa-dev offers
|
||||||
|
// GL/gl.h hopefully that's the only one needed
|
||||||
|
(LinuxDistro::Alpine, "mesa-dev".into()),
|
||||||
|
]),
|
||||||
|
},
|
||||||
Dependency {
|
Dependency {
|
||||||
name: "lz4-dev".into(),
|
name: "lz4-dev".into(),
|
||||||
dep_type: DepType::Include,
|
dep_type: DepType::Include,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue