Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions reader/document/document.pri
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ HEADERS += \
# XPS支持文件(条件包含)
xps_support {
HEADERS += $$PWD/XpsDocumentAdapter.h
HEADERS += $$PWD/XpsTextExtractor.h
SOURCES += $$PWD/XpsDocumentAdapter.cpp
SOURCES += $$PWD/XpsTextExtractor.cpp
}

SOURCES += \
Expand Down
9 changes: 9 additions & 0 deletions reader/eyeprotection/eyeprotection.pri
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
HEADERS += \
$$PWD/EyeProtectionManager.h \
$$PWD/EyeProtectionAction.h

SOURCES += \
$$PWD/EyeProtectionManager.cpp \
$$PWD/EyeProtectionAction.cpp

INCLUDEPATH += $$PWD
2 changes: 2 additions & 0 deletions reader/src.pri
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ INCLUDEPATH += $$PWD/widgets
INCLUDEPATH += $$PWD/sidebar
INCLUDEPATH += $$PWD/browser
INCLUDEPATH += $$PWD/document
INCLUDEPATH += $$PWD/eyeprotection

include ($$PWD/app/app.pri)
include ($$PWD/browser/browser.pri)
include ($$PWD/sidebar/sidebar.pri)
include ($$PWD/widgets/widgets.pri)
include ($$PWD/document/document.pri)
include ($$PWD/uiframe/uiframe.pri)
include ($$PWD/eyeprotection/eyeprotection.pri)

SOURCES += \
$$PWD/Application.cpp \
Expand Down
2 changes: 2 additions & 0 deletions reader/widgets/widgets.pri
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ HEADERS += \
$$PWD/BaseWidget.h \
$$PWD/TipsWidget.h \
$$PWD/WordWrapLabel.h \
$$PWD/RestoreTipWidget.h \
$$PWD/RoundColorWidget.h \
$$PWD/TransparentTextEdit.h \
$$PWD/TextEditWidget.h \
Expand All @@ -37,6 +38,7 @@ SOURCES += \
$$PWD/BaseWidget.cpp \
$$PWD/TipsWidget.cpp \
$$PWD/WordWrapLabel.cpp \
$$PWD/RestoreTipWidget.cpp \
$$PWD/RoundColorWidget.cpp \
$$PWD/TransparentTextEdit.cpp \
$$PWD/TextEditWidget.cpp \
Expand Down
Loading