mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
53 lines
1.0 KiB
Prolog
53 lines
1.0 KiB
Prolog
CONFIG -= qt
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib
|
|
|
|
CONFIG += c++11
|
|
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
CORE_ROOT_DIR = $$PWD/../..
|
|
PWD_ROOT_DIR = $$PWD
|
|
include(../base.pri)
|
|
|
|
ADD_DEPENDENCY(UnicodeConverter, kernel)
|
|
|
|
SOURCES += \
|
|
RBTree/rbtree.cpp \
|
|
cfitem.cpp \
|
|
cfstorage.cpp \
|
|
cfstream.cpp \
|
|
compoundfile.cpp \
|
|
directoryentry.cpp \
|
|
header.cpp \
|
|
sector.cpp \
|
|
sectorcollection.cpp \
|
|
stream.cpp \
|
|
streamrw.cpp \
|
|
streamview.cpp
|
|
|
|
HEADERS += \
|
|
RBTree/irbnode.h \
|
|
RBTree/rbtree.h \
|
|
RBTree/rbtreeexception.h \
|
|
cfexception.h \
|
|
cfitem.h \
|
|
cfstorage.h \
|
|
cfstream.h \
|
|
compoundfile.h \
|
|
directoryentry.h \
|
|
event.h \
|
|
guid.h \
|
|
header.h \
|
|
idirectoryentry.h \
|
|
sector.h \
|
|
sectorcollection.h \
|
|
slist.h \
|
|
stream.h \
|
|
streamrw.h \
|
|
streamview.h \
|
|
svector.h
|