diff --git a/compile.sh b/compile.sh index e95ba242189270cdfc588f850037fb2d6b47b3f4..5f404f908d26fcc25af19f71f52847f470ab83b7 100755 --- a/compile.sh +++ b/compile.sh @@ -43,6 +43,8 @@ function compile { echoMessage "x64 arch" if [ "$(uname -s)" = "Darwin" ]; then TWEEGO_EXE="./devTools/tweeGo/tweego_osx64" + elif [ $OSTYPE = "msys" ]; then + TWEEGO_EXE="./devTools/tweeGo/tweego_win64" else TWEEGO_EXE="./devTools/tweeGo/tweego_nix64" fi @@ -51,6 +53,8 @@ function compile { echoMessage "x86 arch" if [ "$(uname -s)" = "Darwin" ]; then TWEEGO_EXE="./devTools/tweeGo/tweego_osx86" + elif [ $OSTYPE = "msys" ]; then + TWEEGO_EXE="./devTools/tweeGo/tweego_win86" else TWEEGO_EXE="./devTools/tweeGo/tweego_nix86" fi