mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64139 954022d7-b5bf-4e40-9824-e11837661b57
69 lines
1.5 KiB
INI
69 lines
1.5 KiB
INI
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2014-12-16T18:25:28
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= core
|
|
QT -= gui
|
|
|
|
QMAKE_CXXFLAGS += -std=c++11 -Wall -Wno-ignored-qualifiers
|
|
|
|
DEFINES += UNICODE \
|
|
_UNICODE \
|
|
_LINUX_QT \
|
|
LINUX
|
|
|
|
CONFIG(debug, debug|release){
|
|
|
|
message(Debug)
|
|
DEFINES += _DEBUG
|
|
}
|
|
TARGET = ASCXlsConverter
|
|
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
CONFIG += c++11
|
|
|
|
TEMPLATE = app
|
|
|
|
INCLUDEPATH += \
|
|
/usr/include/libxml2
|
|
|
|
SOURCES += \
|
|
XlsFileConverter.cpp \
|
|
../../Common/DocxFormat/Source/Base/unicode_util.cpp \
|
|
../../Common/3dParty/pole/pole.cpp \
|
|
../../Common/DocxFormat/Source/SystemUtility/FileSystem/FilePosix.cpp \
|
|
../../Common/DocxFormat/Source/SystemUtility/FileSystem/DirectoryPosix.cpp \
|
|
../../Common/DocxFormat/Source/XML/stringcommon.cpp
|
|
|
|
|
|
linux-g++{
|
|
|
|
message(64 bit)
|
|
|
|
unix:!macx: LIBS += -L$$PWD/../../SDK/lib/linux_64/ -lXlsFormatLib
|
|
unix:!macx: PRE_TARGETDEPS += $$PWD/../../SDK/lib/linux_64/libXlsFormatLib.a
|
|
|
|
LIBS += -L$$PWD/../../SDK/lib/linux_64/ -lgraphics
|
|
LIBS += -L$$PWD/../../SDK/lib/linux_64/ -lASCOfficeUtilsLib
|
|
}
|
|
|
|
else{
|
|
|
|
message(32 bit)
|
|
|
|
unix:!macx: LIBS += -L$$PWD/../../SDK/lib/linux_32/ -lXlsFormatLib
|
|
unix:!macx: PRE_TARGETDEPS += $$PWD/../../SDK/lib/linux_32/libXlsFormatLib.a
|
|
|
|
LIBS += -L$$PWD/../../SDK/lib/linux_32/ -lgraphics
|
|
LIBS += -L$$PWD/../../SDK/lib/linux_32/ -lASCOfficeUtilsLib
|
|
}
|
|
|
|
LIBS += -lboost_regex
|
|
LIBS += -lz
|
|
LIBS += -lxml2
|
|
LIBS += -lcurl
|
|
|