mirror of https://github.com/mono/CppSharp.git
1 changed files with 23 additions and 0 deletions
@ -0,0 +1,23 @@
@@ -0,0 +1,23 @@
|
||||
#!/bin/sh |
||||
|
||||
DIR=$( cd "$( dirname "$0" )" && pwd ) |
||||
|
||||
case "$(uname -s)" in |
||||
|
||||
Darwin) |
||||
$DIR/premake5-osx $* |
||||
;; |
||||
|
||||
Linux) |
||||
$DIR/premake5-linux $* |
||||
;; |
||||
|
||||
CYGWIN*|MINGW32*|MSYS*|MINGW*) |
||||
$DIR/premake5.exe $* |
||||
;; |
||||
|
||||
*) |
||||
echo "Unsupported platform" |
||||
exit 1 |
||||
;; |
||||
esac |
Loading…
Reference in new issue