Merge release/v5.4.0 into develop

This commit is contained in:
Alexey Golubev
2019-08-26 19:22:31 +03:00
3 changed files with 11 additions and 5 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
out/
makefiles/
.qmake.stash
config.json
config

7
make
View File

@ -74,12 +74,15 @@ IS_NEED_64=true
IS_NEED_32=true
fi
if [[ "$OO_PLATFORM" == *"x64"* ]] || [[ "$OO_PLATFORM" == *"linux_64"* ]] || [[ "$OO_PLATFORM" == *"mac_64"* ]]
if [[ "$OO_PLATFORM" == *"x64"* ]] || \
[[ "$OO_PLATFORM" == *"linux_64"* ]] || \
[[ "$OO_PLATFORM" == *"mac_64"* ]]
then
IS_NEED_64=true
fi
if [[ "$OO_PLATFORM" == *"x86"* ]] || [[ "$OO_PLATFORM" == *"linux_32"* ]]
if [[ "$OO_PLATFORM" == *"x86"* ]] || \
[[ "$OO_PLATFORM" == *"linux_32"* ]]
then
IS_NEED_32=true
fi

View File

@ -17,12 +17,15 @@ then
IS_NEED_32=true
fi
if [[ "$OO_PLATFORM" == *"x64"* ]]
if [[ "$OO_PLATFORM" == *"x64"* ]] || \
[[ "$OO_PLATFORM" == *"linux_64"* ]] || \
[[ "$OO_PLATFORM" == *"mac_64"* ]]
then
IS_NEED_64=true
fi
if [[ "$OO_PLATFORM" == *"x86"* ]]
if [[ "$OO_PLATFORM" == *"x86"* ]] || \
[[ "$OO_PLATFORM" == *"linux_32"* ]]
then
IS_NEED_32=true
fi