anki/rslib/build/main.rs

20 lines
635 B
Rust
Raw Normal View History

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
pub mod protobuf;
fn main() {
protobuf::write_backend_proto_rs();
// when building with cargo (eg for rust analyzer), generate a dummy BUILDINFO
if std::env::var("BAZEL").is_err() {
let buildinfo_out =
std::path::Path::new(&std::env::var("OUT_DIR").unwrap()).join("buildinfo.txt");
std::fs::write(&buildinfo_out, "").unwrap();
println!(
"cargo:rustc-env=BUILDINFO={}",
buildinfo_out.to_str().expect("buildinfo")
);
}
}