mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 11:35:48 +00:00
fix: imports
This commit is contained in:
parent
ff46caf3ec
commit
1cfed0381c
1 changed files with 6 additions and 8 deletions
|
@ -1,14 +1,12 @@
|
|||
use crate::depcheck::{Dependency, check_dependencies, DependencyCheckResult};
|
||||
use crate::depcheck::{check_dependencies, DepType, Dependency, DependencyCheckResult};
|
||||
|
||||
fn wivrn_deps() -> Vec<Dependency> {
|
||||
// TODO: populate!
|
||||
vec![
|
||||
Dependency {
|
||||
name: "x264-dev".into(),
|
||||
dep_type: DepType::Include,
|
||||
filename: "x265.h".into(),
|
||||
},
|
||||
]
|
||||
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