Files
simple-rust-tests/__misc/dotalib/README.md
2021-01-10 15:15:38 +08:00

19 lines
290 B
Markdown

cbindgen:
https://github.com/eqrion/cbindgen
C++
```shell
cbindgen --config cbindgen.toml --crate dotalib --output dotalib.h
```
C
```shell
cbindgen --config cbindgen.toml --crate dotalib --lang c --output dotalib.h
```
Compile
```shell
cargo build
gcc -Ltarget/debug/ -ldota test.c
```