mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-07-30 20:58:45 +00:00
feat: more basalt deps
This commit is contained in:
parent
4c42a1c71c
commit
0faa36c799
1 changed files with 13 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
use crate::{
|
use crate::{
|
||||||
depcheck::{DepType, Dependency, DependencyCheckResult},
|
depcheck::{DepType, Dependency, DependencyCheckResult},
|
||||||
dependencies::common::{dep_eigen, dep_gpp, dep_opencv},
|
dependencies::common::{dep_cmake, dep_eigen, dep_gpp, dep_ninja, dep_opencv},
|
||||||
linux_distro::LinuxDistro,
|
linux_distro::LinuxDistro,
|
||||||
};
|
};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
@ -8,6 +8,8 @@ use std::collections::HashMap;
|
||||||
fn basalt_deps() -> Vec<Dependency> {
|
fn basalt_deps() -> Vec<Dependency> {
|
||||||
vec![
|
vec![
|
||||||
dep_gpp(),
|
dep_gpp(),
|
||||||
|
dep_cmake(),
|
||||||
|
dep_ninja(),
|
||||||
Dependency {
|
Dependency {
|
||||||
name: "boost".into(),
|
name: "boost".into(),
|
||||||
dep_type: DepType::SharedObject,
|
dep_type: DepType::SharedObject,
|
||||||
|
@ -54,8 +56,18 @@ fn basalt_deps() -> Vec<Dependency> {
|
||||||
(LinuxDistro::Debian, "libbz2-dev".into()),
|
(LinuxDistro::Debian, "libbz2-dev".into()),
|
||||||
(LinuxDistro::Fedora, "bzip2-devel".into()),
|
(LinuxDistro::Fedora, "bzip2-devel".into()),
|
||||||
(LinuxDistro::Alpine, "bzip2-dev".into()),
|
(LinuxDistro::Alpine, "bzip2-dev".into()),
|
||||||
|
(LinuxDistro::Gentoo, "app-arch/bzip2".into()),
|
||||||
]),
|
]),
|
||||||
},
|
},
|
||||||
|
// Dependency {
|
||||||
|
// name: "cli11-dev".into(),
|
||||||
|
// dep_type: DepType::Include,
|
||||||
|
// filename: "CLI/App.hpp".into(),
|
||||||
|
// packages: HashMap::from([
|
||||||
|
// (LinuxDistro::Arch, "cli11".into()),
|
||||||
|
// (LinuxDistro::Debian, "libcli11-dev")
|
||||||
|
// ])
|
||||||
|
// },
|
||||||
dep_eigen(),
|
dep_eigen(),
|
||||||
Dependency {
|
Dependency {
|
||||||
name: "fmt".into(),
|
name: "fmt".into(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue