mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 00:22:28 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@59486 954022d7-b5bf-4e40-9824-e11837661b57
55 lines
2.0 KiB
Prolog
55 lines
2.0 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2014-10-10T14:24:04
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= core gui
|
|
|
|
TARGET = ASCHTMLRendererLib
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib
|
|
QMAKE_CXXFLAGS += -std=c++11 -Wall -Wno-ignored-qualifiers -g
|
|
DEFINES += UNICODE _UNICODE _LINUX_QT NODOCX DESKTOP_EDITOR_GRAPHICS
|
|
|
|
INCLUDEPATH += \
|
|
../../DesktopEditor/freetype-2.5.2/include \
|
|
../../DesktopEditor/agg-2.4/include
|
|
|
|
SOURCES += ../ASCSVGWriter.cpp \
|
|
../CASCImage.cpp \
|
|
../CASCSVGRenderer.cpp \
|
|
../CMetafile.cpp \
|
|
|
|
HEADERS += ../ASCSVGWriter.h \
|
|
../CASCImage.h \
|
|
../CASCSVGRenderer.h \
|
|
../CMetafile.h \
|
|
../Writer/Common.h \
|
|
../Writer/Const.h \
|
|
../IBaseMatrixUpdater.h \
|
|
../Writer/TextItem.h \
|
|
../Writer/StringWriter.h \
|
|
../Writer/SVGWriter.h \
|
|
../Writer/VectorGraphicsWriter2.h \
|
|
../Writer/VMLWriter.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/RendererOutput.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfCharsets.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfCodePage932.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfCodePage936.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfCodePage949.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfCodePage950.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfCodePage1361.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfColor.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfFile.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfMemory.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfOutputDevice.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfRegion.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfTypes.h \
|
|
../../ASCImageStudio3/ASCGraphics/Objects/Image/Wmf/WmfUtils.h
|
|
|
|
unix {
|
|
target.path = /usr/lib
|
|
INSTALLS += target
|
|
}
|