1
0
mirror of https://github.com/ndarilek/tts-rs.git synced 2024-11-25 11:19:37 +00:00
tts-rs/cbindgen.toml
mcb2003 aa47b12622 FFI: Generate C bindings by default, not C++
More portible, and the FFI is much more C-like.
2020-12-12 20:20:22 +00:00

10 lines
288 B
TOML

language = "c"
include_guard = "TTS_RS_H"
autogen_warning = "/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */"
[defines]
"target_os = linux" = "__linux__"
"target_os = macos" = "__APPLE__"
"target_arch = wasm32" = "__EMSCRIPTEN__"
windows = "__WIN32__"