mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 11:35:48 +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_cmake(),
|
||||
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 {
|
||||
name: "lz4-dev".into(),
|
||||
dep_type: DepType::Include,
|
||||
|
|
Loading…
Add table
Reference in a new issue