Skip to content

Commit

Permalink
cargo format
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwe committed Mar 20, 2024
1 parent 081753b commit 4f16e7c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions build.rs
Expand Up @@ -49,11 +49,13 @@ fn build_brotli() {

fn build_woff2() {
let woff2_dir = Path::new("src/deps/woff2/src");
let file_names = ["table_tags.cc",
"variable_length.cc",
"woff2_common.cc",
"woff2_dec.cc",
"woff2_out.cc"];
let file_names = [
"table_tags.cc",
"variable_length.cc",
"woff2_common.cc",
"woff2_dec.cc",
"woff2_out.cc",
];
let woff2_sources = file_names.iter().map(|name| woff2_dir.join(name));

cc::Build::new()
Expand All @@ -72,7 +74,6 @@ fn build_ots_glue() {
.compile("ots_glue");
}


fn main() {
build_lz4();
build_ots();
Expand Down

0 comments on commit 4f16e7c

Please sign in to comment.