mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-08-03 14:49:04 +00:00
feat: add lz4 dep to basalt
This commit is contained in:
parent
7c99b33145
commit
c592fc5917
1 changed files with 11 additions and 0 deletions
|
@ -10,6 +10,17 @@ fn basalt_deps() -> Vec<Dependency> {
|
||||||
dep_gpp(),
|
dep_gpp(),
|
||||||
dep_cmake(),
|
dep_cmake(),
|
||||||
dep_ninja(),
|
dep_ninja(),
|
||||||
|
Dependency {
|
||||||
|
name: "lz4-dev".into(),
|
||||||
|
dep_type: DepType::Include,
|
||||||
|
filename: "lz4.h".into(),
|
||||||
|
packages: HashMap::from([
|
||||||
|
(LinuxDistro::Arch, "lz4".into()),
|
||||||
|
(LinuxDistro::Debian, "liblz4-dev".into()),
|
||||||
|
(LinuxDistro::Fedora, "lz4-devel".into()),
|
||||||
|
(LinuxDistro::Alpine, "lz4-dev".into()),
|
||||||
|
]),
|
||||||
|
},
|
||||||
Dependency {
|
Dependency {
|
||||||
name: "libepoxy".into(),
|
name: "libepoxy".into(),
|
||||||
dep_type: DepType::Include,
|
dep_type: DepType::Include,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue