x2t fix linux path build

This commit is contained in:
ElenaSubbotina
2016-10-05 15:42:02 +03:00
parent 31e1ed6ab1
commit 970596d4cd
2 changed files with 12 additions and 5 deletions

View File

@ -18,12 +18,14 @@ win32:!contains(QMAKE_TARGET.arch, x86_64): {
}
linux-g++ | linux-g++-64 | linux-g++-32 {
message("linux")
CONFIG += core_linux
}
linux-g++:contains(QMAKE_HOST.arch, x86_64): {
linux-g++-64 {
message("linux-64")
CONFIG += core_linux_64
}
linux-g++:!contains(QMAKE_HOST.arch, x86_64): {
} else {
message("linux-32")
CONFIG += core_linux_32
}

View File

@ -115,8 +115,13 @@ DESTDIR = $$PWD/../../../build/bin
core_windows {
DESTDIR = $$DESTDIR/windows
}
core_linux {
DESTDIR = $$DESTDIR/linux
core_linux_64 {
message("x2t linux 64 build")
DESTDIR = $$DESTDIR/linux_64
}
core_linux_32 {
message("x2t linux 32 build")
DESTDIR = $$DESTDIR/linux_32
}
core_mac {
DESTDIR = $$DESTDIR/mac