Skip to content

Commit

Permalink
chore: add Deflattened CellsAndProofs to java build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Jun 10, 2024
1 parent abcbfa5 commit 001ed14
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bindings/java/rust_code/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ use std::{env, path::PathBuf};
const PATH_TO_JAVA_BINDINGS_FILE: &str = "java/java_code/src/main/java/ethereum/cryptography";

// These are the files needed to pass to the `javac` command to generate the header file
const INPUT_FILES: [&str; 2] = ["LibPeerDASKZG.java", "CellsAndProofs.java"];
const INPUT_FILES: [&str; 3] = [
"LibPeerDASKZG.java",
"CellsAndProofs.java",
"CellsAndProofsDeflattened.java",
];

fn main() {
let path_to_bindings_dir = path_to_bindings_folder();
Expand Down

0 comments on commit 001ed14

Please sign in to comment.