feat: c++ bindings

This commit is contained in:
Henri Bourcereau 2026-02-26 13:27:55 +01:00
parent 0429999672
commit 3490a184b3
6 changed files with 364 additions and 4 deletions

7
store/build.rs Normal file
View file

@ -0,0 +1,7 @@
fn main() {
cxx_build::bridge("src/cxxengine.rs")
.std("c++17")
.compile("trictrac-cxx");
println!("cargo:rerun-if-changed=src/cxxengine.rs");
}