anki/rslib/build/main.rs
Arthur Milchior 8b5ae7d7c5 NF: add AGPL licence missing in some file
I noticed it when I looked at some files now used in AnkiDroid, wanting to be sure we clearly indicate that we have
AGPLv3 code linked in the app
2021-01-31 21:50:21 +01:00

22 lines
700 B
Rust

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
pub mod mergeftl;
pub mod protobuf;
fn main() {
mergeftl::write_ftl_files_and_fluent_rs();
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")
);
}
}