mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
Add version of run.sh that works on OS X
Originally committed to SVN as r6828.
This commit is contained in:
parent
3d512eb422
commit
dcbe114361
24
aegisub/src/osx-run.sh
Executable file
24
aegisub/src/osx-run.sh
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
case "$1" in
|
||||
"build")
|
||||
cd ..
|
||||
make
|
||||
make osx-bundle
|
||||
cd src
|
||||
open ../*.app
|
||||
;;
|
||||
"build-gdb")
|
||||
cd ..
|
||||
make
|
||||
make osx-bundle
|
||||
cd src
|
||||
gdb ../*.app/Contents/MacOS/aegisub
|
||||
;;
|
||||
"gdb")
|
||||
gdb ../*.app/Contents/MacOS/aegisub
|
||||
;;
|
||||
*)
|
||||
open ../*.app
|
||||
;;
|
||||
esac
|
||||
|
Loading…
x
Reference in New Issue
Block a user