mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
destination path
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63661 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander Trofimov
parent
34acd75c1e
commit
cb8ff51266
@ -9,6 +9,35 @@ QT -= core gui
|
||||
TARGET = graphics
|
||||
TEMPLATE = lib
|
||||
CONFIG += staticlib
|
||||
|
||||
############### destination path ###############
|
||||
DESTINATION_SDK_PATH = $$PWD/../../../../SDK/lib
|
||||
|
||||
# WINDOWS
|
||||
win32:contains(QMAKE_TARGET.arch, x86_64):{
|
||||
CONFIG(debug, debug|release) {
|
||||
DESTDIR = $$DESTINATION_SDK_PATH/win_64/DEBUG
|
||||
} else {
|
||||
DESTDIR = $$DESTINATION_SDK_PATH/win_64
|
||||
}
|
||||
}
|
||||
win32:!contains(QMAKE_TARGET.arch, x86_64):{
|
||||
CONFIG(debug, debug|release) {
|
||||
DESTDIR = $$DESTINATION_SDK_PATH/win_32/DEBUG
|
||||
} else {
|
||||
DESTDIR = $$DESTINATION_SDK_PATH/win_32
|
||||
}
|
||||
}
|
||||
|
||||
linux-g++:contains(QMAKE_HOST.arch, x86_64):{
|
||||
DESTDIR = $$DESTINATION_SDK_PATH/linux_64
|
||||
}
|
||||
linux-g++:!contains(QMAKE_HOST.arch, x86_64):{
|
||||
DESTDIR = $$DESTINATION_SDK_PATH/linux_32
|
||||
}
|
||||
|
||||
################################################
|
||||
|
||||
DEFINES += \
|
||||
_QT \
|
||||
FT2_BUILD_LIBRARY \
|
||||
@ -50,6 +79,8 @@ win32 {
|
||||
|
||||
DEFINES -= UNICODE
|
||||
|
||||
QMAKE_CXXFLAGS_RELEASE -= -Zc:strictStrings
|
||||
|
||||
message(windows)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user