diff options
author | sfan5 <sfan5@live.de> | 2021-03-25 14:14:44 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2021-03-25 15:47:33 +0100 |
commit | f05f84b33b19ed11fc1d6eef48286a06c59b06ce (patch) | |
tree | 2ae6273b52d0e154af26f6780fa18b46bde536c9 /scripts/ci-build-mingw.sh | |
parent | 3006362e250b08de381a6d2add52526dacc815fb (diff) | |
download | irrlicht-f05f84b33b19ed11fc1d6eef48286a06c59b06ce.tar.xz |
Rename library to IrrlichtMt
for clarity and to avoid conflicts
closes #16
Diffstat (limited to 'scripts/ci-build-mingw.sh')
-rwxr-xr-x | scripts/ci-build-mingw.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/ci-build-mingw.sh b/scripts/ci-build-mingw.sh index edf63b7..58b7a82 100755 --- a/scripts/ci-build-mingw.sh +++ b/scripts/ci-build-mingw.sh @@ -1,10 +1,10 @@ #!/bin/bash -e -variant=win32 -[[ "$1" == "--64" ]] && variant=win64 - [[ -z "$CC" || -z "$CXX" ]] && exit 255 +variant=win32 +[[ "$CXX" == "x86_64-"* ]] && variant=win64 + libjpeg_version=2.0.6 libpng_version=1.6.37 zlib_version=1.2.11 |