mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-23 23:27:57 +01:00
Update build.rs to not output to tracked dir
This commit is contained in:
parent
78bd75ae05
commit
cd052fcaf0
33
api/build.rs
33
api/build.rs
@ -8,8 +8,7 @@ fn is_hidden(entry: &DirEntry) -> bool {
|
|||||||
.unwrap_or(false)
|
.unwrap_or(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "gen_static"))]
|
fn generate_api() {
|
||||||
fn main() {
|
|
||||||
println!("cargo:rerun-if-changed=schema");
|
println!("cargo:rerun-if-changed=schema");
|
||||||
let mut compile_command = ::capnpc::CompilerCommand::new();
|
let mut compile_command = ::capnpc::CompilerCommand::new();
|
||||||
compile_command
|
compile_command
|
||||||
@ -38,34 +37,6 @@ fn main() {
|
|||||||
compile_command.run().expect("Failed to generate API code");
|
compile_command.run().expect("Failed to generate API code");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "gen_static")]
|
|
||||||
fn main() {
|
fn main() {
|
||||||
println!("cargo:rerun-if-changed=schema");
|
generate_api();
|
||||||
let mut compile_command = ::capnpc::CompilerCommand::new();
|
|
||||||
compile_command
|
|
||||||
.src_prefix("schema")
|
|
||||||
.output_path("src/schema")
|
|
||||||
.default_parent_module(vec!["schema".to_string()]);
|
|
||||||
|
|
||||||
for entry in WalkDir::new("schema")
|
|
||||||
.max_depth(2)
|
|
||||||
.into_iter()
|
|
||||||
.filter_entry(|e| !is_hidden(e))
|
|
||||||
.filter_map(Result::ok) // Filter all entries that access failed on
|
|
||||||
.filter(|e| !e.file_type().is_dir()) // Filter directories
|
|
||||||
// Filter non-schema files
|
|
||||||
.filter(|e| {
|
|
||||||
e.file_name()
|
|
||||||
.to_str()
|
|
||||||
.map(|s| s.ends_with(".capnp"))
|
|
||||||
.unwrap_or(false)
|
|
||||||
})
|
|
||||||
{
|
|
||||||
println!("Collecting schema file {}", entry.path().display());
|
|
||||||
compile_command.file(entry.path());
|
|
||||||
}
|
|
||||||
|
|
||||||
compile_command
|
|
||||||
.run()
|
|
||||||
.expect("Failed to generate extra API code");
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user