Skip to content
Snippets Groups Projects
Commit bba1e357 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'win-support-for-compile.sh' into 'pregmod-master'

win support for compile.sh

See merge request pregmodfan/fc-pregmod!4976
parents 8cd1ae80 f09723d7
No related branches found
No related tags found
No related merge requests found
...@@ -43,6 +43,8 @@ function compile { ...@@ -43,6 +43,8 @@ function compile {
echoMessage "x64 arch" echoMessage "x64 arch"
if [ "$(uname -s)" = "Darwin" ]; then if [ "$(uname -s)" = "Darwin" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_osx64" TWEEGO_EXE="./devTools/tweeGo/tweego_osx64"
elif [ $OSTYPE = "msys" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_win64"
else else
TWEEGO_EXE="./devTools/tweeGo/tweego_nix64" TWEEGO_EXE="./devTools/tweeGo/tweego_nix64"
fi fi
...@@ -51,6 +53,8 @@ function compile { ...@@ -51,6 +53,8 @@ function compile {
echoMessage "x86 arch" echoMessage "x86 arch"
if [ "$(uname -s)" = "Darwin" ]; then if [ "$(uname -s)" = "Darwin" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_osx86" TWEEGO_EXE="./devTools/tweeGo/tweego_osx86"
elif [ $OSTYPE = "msys" ]; then
TWEEGO_EXE="./devTools/tweeGo/tweego_win86"
else else
TWEEGO_EXE="./devTools/tweeGo/tweego_nix86" TWEEGO_EXE="./devTools/tweeGo/tweego_nix86"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment