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