mirror of
https://github.com/herdrdev/herdr.git
synced 2026-09-21 16:01:04 +00:00
13 lines
416 B
Bash
13 lines
416 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Additional clang arguments can supply a resource directory on minimal hosts.
|
|
"${BINDGEN:-bindgen}" vendor/libghostty-vt/include/ghostty/vt.h \
|
|
--allowlist-type 'Ghostty.*' \
|
|
--allowlist-function 'ghostty_.*' \
|
|
--allowlist-var 'GHOSTTY_.*' \
|
|
--with-derive-default \
|
|
--output src/ghostty/bindings.rs \
|
|
-- -Ivendor/libghostty-vt/include "$@"
|