-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookreader.pro
executable file
·88 lines (72 loc) · 2.18 KB
/
bookreader.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#-------------------------------------------------
#
# Project created by QtCreator 2018-05-24T18:16:32
#
#-------------------------------------------------
QT += core gui sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
equals(QT_MAJOR_VERSION, 6): QT += core5compat
!win32 {
DEFINES += BOOKREADER_USE_QTSPEECH
}
contains(DEFINES, BOOKREADER_USE_QTSPEECH) {
QT+= texttospeech
} else {
SOURCES +=core/texttospeech.cpp
HEADERS +=core/texttospeech.h
}
win32: RC_ICONS += icon.ico
TARGET = bookreader
TEMPLATE = app
VERSION=1.3.1
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
PRECOMPILED_HEADER=pch.h
PRECOMPILED_DIR=pch
CONFIG += precompile_header c++11
include(qhotkey.pri)
SOURCES += \
dialog/dialogabout.cpp \
main.cpp \
mainwindow.cpp \
core/widgetoutput.cpp \
core/fileinfo.cpp \
core/widgetfull.cpp \
core/widgetoneline.cpp \
dialog/dialogconfig.cpp \
dialog/dialogsearch.cpp \
dialog/dialogindex.cpp \
dialog/dialogindexadvance.cpp \
dialog/formrollrate.cpp
HEADERS += \
dialog/dialogabout.h \
mainwindow.h \
pch.h \
core/widgetoutput.h \
core/fileinfo.h \
core/widgetfull.h \
core/widgetoneline.h \
dialog/dialogconfig.h \
dialog/dialogsearch.h \
dialog/dialogindex.h \
dialog/dialogindexadvance.h \
dialog/formrollrate.h
FORMS += \
dialog/dialogabout.ui \
mainwindow.ui \
dialog/dialogconfig.ui \
dialog/dialogsearch.ui \
dialog/dialogindex.ui \
dialog/dialogindexadvance.ui \
dialog/formrollrate.ui
DISTFILES +=
RESOURCES += \
res.qrc