forked from abroshan39/ghazal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathghazal.pro
111 lines (98 loc) · 3.02 KB
/
ghazal.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
QT += core gui widgets sql concurrent xml network
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
CONFIG += c++11
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked 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 it uses 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
OUTPUT_FILE_NAME_UNIX = "ghazal"
OUTPUT_FILE_NAME_WIN = "Ghazal"
OUTPUT_FILE_NAME_MAC = "Ghazal"
QUAZIP_LIB_NAME_UNIX = "quazip1-qt5"
QUAZIP_LIB_NAME_WIN = "quazip1-qt5"
QUAZIP_LIB_NAME_MAC = "quazip1-qt5"
unix:!mac {
TARGET = $$OUTPUT_FILE_NAME_UNIX
LIBS += -L$$PWD/libraries/unix/quazip -l$$QUAZIP_LIB_NAME_UNIX
}
win32 {
TARGET = $$OUTPUT_FILE_NAME_WIN
LIBS += -L$$PWD/libraries/win/quazip -l$$QUAZIP_LIB_NAME_WIN
RC_FILE = $$PWD/resources/resource_win.rc
}
mac {
TARGET = $$OUTPUT_FILE_NAME_MAC
LIBS += -L$$PWD/libraries/mac/quazip -l$$QUAZIP_LIB_NAME_MAC
}
INCLUDEPATH += $$PWD/libraries/include
HEADERS += \
src/abjad_class.h \
src/abjadform.h \
src/abjadformmini.h \
src/aboutauthorform.h \
src/aboutform.h \
src/appthemes.h \
src/common_functions.h \
src/databaseform.h \
src/date_converter.h \
src/downloadform.h \
src/event_functions.h \
src/filedownloader.h \
src/mainwindow.h \
src/searchexamplesform.h \
src/searchform.h \
src/settingsform.h \
src/tabform.h \
src/updatecheckform.h \
src/version.h \
src/wordsearchform.h \
src/worker.h
SOURCES += \
src/abjad_class.cpp \
src/abjadform.cpp \
src/abjadformmini.cpp \
src/aboutauthorform.cpp \
src/aboutform.cpp \
src/appthemes.cpp \
src/common_functions.cpp \
src/common_search.cpp \
src/databaseform.cpp \
src/date_converter.c \
src/downloadform.cpp \
src/event_functions.cpp \
src/filedownloader.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/mainwindow_action_menu.cpp \
src/mainwindow_app_setting.cpp \
src/mainwindow_search_form.cpp \
src/searchexamplesform.cpp \
src/searchform.cpp \
src/settingsform.cpp \
src/tabform.cpp \
src/tabform_context_menu.cpp \
src/updatecheckform.cpp \
src/wordsearchform.cpp \
src/worker.cpp
FORMS += \
src/abjadform.ui \
src/abjadformmini.ui \
src/aboutauthorform.ui \
src/aboutform.ui \
src/databaseform.ui \
src/downloadform.ui \
src/mainwindow.ui \
src/searchexamplesform.ui \
src/searchform.ui \
src/settingsform.ui \
src/tabform.ui \
src/updatecheckform.ui \
src/wordsearchform.ui
RESOURCES += \
resources/themes/darkstyle.qrc \
resources/resource.qrc