Commit 884bffc1 authored by Alexey Golubev's avatar Alexey Golubev

Merge branch 'hotfix/build-4.1'

parents f84ee9a5 e81a61c9
...@@ -34,7 +34,7 @@ echo "boost already extracted" ...@@ -34,7 +34,7 @@ echo "boost already extracted"
else else
if [[ "$platform" == *"linux"* ]] if [[ "$platform" == *"linux"* ]]
then then
7z x "$SCRIPTPATH/boost_1_58_0.7z" -o"$SCRIPTPATH/" 7z x -y "$SCRIPTPATH/boost_1_58_0.7z" -o"$SCRIPTPATH/"
else else
hdiutil mount "$SCRIPTPATH/7zX_1.7.1.dmg" hdiutil mount "$SCRIPTPATH/7zX_1.7.1.dmg"
/Volumes/7zX/7zX.app/Contents/Resources/7za x "$SCRIPTPATH/boost_1_58_0.7z" -o"$SCRIPTPATH/" /Volumes/7zX/7zX.app/Contents/Resources/7za x "$SCRIPTPATH/boost_1_58_0.7z" -o"$SCRIPTPATH/"
......
...@@ -17,16 +17,31 @@ win32:!contains(QMAKE_TARGET.arch, x86_64): { ...@@ -17,16 +17,31 @@ win32:!contains(QMAKE_TARGET.arch, x86_64): {
CONFIG += core_win_32 CONFIG += core_win_32
} }
linux-g++ | linux-g++-64 | linux-g++-32 { linux-g++
{
CONFIG += core_linux CONFIG += core_linux
}
linux-g++:contains(QMAKE_HOST.arch, x86_64): { linux-g++:contains(QMAKE_HOST.arch, x86_64): {
message("linux-64")
CONFIG += core_linux_64 CONFIG += core_linux_64
} }
linux-g++:!contains(QMAKE_HOST.arch, x86_64): { linux-g++:!contains(QMAKE_HOST.arch, x86_64): {
message("linux-32")
CONFIG += core_linux_32
}
}
linux-g++-64 {
message("linux-64")
CONFIG += core_linux
CONFIG += core_linux_64
}
linux-g++-32 {
message("linux-32")
CONFIG += core_linux
CONFIG += core_linux_32 CONFIG += core_linux_32
} }
mac { mac {
CONFIG += core_mac CONFIG += core_mac
CONFIG += core_mac_64 CONFIG += core_mac_64
......
...@@ -22,6 +22,7 @@ PWD_ROOT_DIR = $$PWD ...@@ -22,6 +22,7 @@ PWD_ROOT_DIR = $$PWD
CONFIG += core_static_link_libstd CONFIG += core_static_link_libstd
CONFIG += core_x2t CONFIG += core_x2t
include(../../../Common/base.pri) include(../../../Common/base.pri)
include(../../../Common/3dParty/icu/icu.pri)
core_win_32 { core_win_32 {
TARGET = x2t32 TARGET = x2t32
...@@ -114,8 +115,13 @@ DESTDIR = $$PWD/../../../build/bin ...@@ -114,8 +115,13 @@ DESTDIR = $$PWD/../../../build/bin
core_windows { core_windows {
DESTDIR = $$DESTDIR/windows DESTDIR = $$DESTDIR/windows
} }
core_linux { core_linux_64 {
DESTDIR = $$DESTDIR/linux message("x2t linux 64 build")
DESTDIR = $$DESTDIR/linux_64
}
core_linux_32 {
message("x2t linux 32 build")
DESTDIR = $$DESTDIR/linux_32
} }
core_mac { core_mac {
DESTDIR = $$DESTDIR/mac DESTDIR = $$DESTDIR/mac
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment