mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 19:44:50 +00:00
feat: add x264 to wivrn deps
This commit is contained in:
parent
08e267f7f0
commit
ff46caf3ec
1 changed files with 7 additions and 1 deletions
|
@ -2,7 +2,13 @@ use crate::depcheck::{Dependency, check_dependencies, DependencyCheckResult};
|
|||
|
||||
fn wivrn_deps() -> Vec<Dependency> {
|
||||
// TODO: populate!
|
||||
vec![]
|
||||
vec![
|
||||
Dependency {
|
||||
name: "x264-dev".into(),
|
||||
dep_type: DepType::Include,
|
||||
filename: "x265.h".into(),
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
pub fn check_wivrn_deps() -> Vec<DependencyCheckResult> {
|
||||
|
|
Loading…
Add table
Reference in a new issue