mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 11:35:48 +00:00
Merge branch 'fix-boost' into 'main'
Fix missing boost deps on Fedora and Alpine for Basalt See merge request gabmus/envision!100
This commit is contained in:
commit
de58e892b1
1 changed files with 2 additions and 2 deletions
|
@ -52,8 +52,8 @@ pub fn boost_deps() -> Vec<Dependency> {
|
|||
packages: HashMap::from([
|
||||
(LinuxDistro::Arch, "boost".into()),
|
||||
(LinuxDistro::Debian, "libboost-all-dev".into()),
|
||||
(LinuxDistro::Fedora, "boost".into()),
|
||||
(LinuxDistro::Alpine, "boost".into()),
|
||||
(LinuxDistro::Fedora, "boost-devel".into()),
|
||||
(LinuxDistro::Alpine, "boost-dev".into()),
|
||||
(LinuxDistro::Gentoo, "dev-libs/boost".into()),
|
||||
(LinuxDistro::Suse, package.into()),
|
||||
]),
|
||||
|
|
Loading…
Add table
Reference in a new issue