feat: add libepoxy and catch2 as basalt deps

This commit is contained in:
Gabriele Musco 2024-06-21 20:01:12 +02:00
commit fae179d028
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -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,