mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-08-03 06:38: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([
|
packages: HashMap::from([
|
||||||
(LinuxDistro::Arch, "gtest".into()),
|
(LinuxDistro::Arch, "gtest".into()),
|
||||||
(LinuxDistro::Debian, "libgtest-dev".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 {
|
Dependency {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue