mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 03:24:52 +00:00
feat: dependencies for gtest and tbb
This commit is contained in:
parent
fae0732c74
commit
f8895606ea
1 changed files with 11 additions and 0 deletions
|
@ -90,6 +90,17 @@ fn basalt_deps() -> Vec<Dependency> {
|
|||
packages: HashMap::from([
|
||||
(LinuxDistro::Arch, "gtest".into()),
|
||||
(LinuxDistro::Debian, "libgtest-dev".into()),
|
||||
(LinuxDistro::Fedora, "gtest-devel".into()),
|
||||
]),
|
||||
},
|
||||
Dependency {
|
||||
name: "tbb".into(),
|
||||
dep_type: DepType::Include,
|
||||
filename: "tbb/tbb.h".into(),
|
||||
packages: HashMap::from([
|
||||
(LinuxDistro::Arch, "onetbb".into()),
|
||||
(LinuxDistro::Debian, "libtbb-dev".into()),
|
||||
(LinuxDistro::Fedora, "tbb-devel".into()),
|
||||
]),
|
||||
},
|
||||
Dependency {
|
||||
|
|
Loading…
Add table
Reference in a new issue