Files
core/ASCOfficeXlsFile2/linux/XlsFileConverter.pro
Elen.Subbotina 9fe16b8e73 OfficeXlsFile2 linux build - complete
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64139 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:24:03 +03:00

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