mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-08-02 14:18:49 +00:00
feat: add libepoxy and catch2 as basalt deps
This commit is contained in:
parent
0461030627
commit
fae179d028
1 changed files with 22 additions and 0 deletions
|
@ -10,6 +10,28 @@ fn basalt_deps() -> Vec<Dependency> {
|
||||||
dep_gpp(),
|
dep_gpp(),
|
||||||
dep_cmake(),
|
dep_cmake(),
|
||||||
dep_ninja(),
|
dep_ninja(),
|
||||||
|
Dependency {
|
||||||
|
name: "libepoxy".into(),
|
||||||
|
dep_type: DepType::Include,
|
||||||
|
filename: "epoxy/egl.h".into(),
|
||||||
|
packages: HashMap::from([
|
||||||
|
(LinuxDistro::Arch, "libepoxy".into()),
|
||||||
|
(LinuxDistro::Debian, "libepoxy-dev".into()),
|
||||||
|
(LinuxDistro::Fedora, "libepoxy-devel".into()),
|
||||||
|
(LinuxDistro::Alpine, "libepoxy-dev".into()),
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
Dependency {
|
||||||
|
name: "catch2".into(),
|
||||||
|
dep_type: DepType::Include,
|
||||||
|
filename: "catch2/catch_all.hpp".into(),
|
||||||
|
packages: HashMap::from([
|
||||||
|
(LinuxDistro::Arch, "catch2".into()),
|
||||||
|
(LinuxDistro::Debian, "catch2".into()),
|
||||||
|
(LinuxDistro::Fedora, "catch2-devel".into()),
|
||||||
|
(LinuxDistro::Alpine, "catch2-3".into()),
|
||||||
|
]),
|
||||||
|
},
|
||||||
Dependency {
|
Dependency {
|
||||||
name: "boost".into(),
|
name: "boost".into(),
|
||||||
dep_type: DepType::SharedObject,
|
dep_type: DepType::SharedObject,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue