macOSでコンパイル可能に

This commit is contained in:
2026-05-27 14:59:34 +09:00
parent 9b544ce55d
commit 4e51644fa1
5 changed files with 67 additions and 0 deletions

12
macos/hexagon.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
DIR="$(cd "$(dirname "$0")" && pwd)"
ADIR="$(dirname "$DIR")"
BIN="$ADIR/MacOS/hexagon_real"
osascript <<EOF
tell application "Terminal"
activate
do script "\"$BIN\"; exit"
end tell
EOF