-
Notifications
You must be signed in to change notification settings - Fork 20
/
QLog.pro
168 lines (147 loc) · 4.31 KB
/
QLog.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#-------------------------------------------------
#
# Project created by QtCreator 2019-06-10T09:13:09
#
#-------------------------------------------------
QT += core gui sql network xml charts
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qlog
TEMPLATE = app
VERSION = 0.1.0
DEFINES += 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
CONFIG += c++11
SOURCES += \
core/ClubLog.cpp \
core/Conditions.cpp \
core/Cty.cpp \
core/Fldigi.cpp \
core/HamQTH.cpp \
core/Lotw.cpp \
core/Migration.cpp \
core/Rig.cpp \
core/Rotator.cpp \
core/Wsjtx.cpp \
core/main.cpp \
core/utils.cpp \
data/Data.cpp \
data/Dxcc.cpp \
logformat/AdiFormat.cpp \
logformat/AdxFormat.cpp \
logformat/JsonFormat.cpp \
logformat/LogFormat.cpp \
models/DxccTableModel.cpp \
models/LogbookModel.cpp \
models/RigTypeModel.cpp \
models/RotTypeModel.cpp \
models/SqlListModel.cpp \
ui/BandmapWidget.cpp \
ui/ClockWidget.cpp \
ui/DxWidget.cpp \
ui/DxccTableWidget.cpp \
ui/ExportDialog.cpp \
ui/ImportDialog.cpp \
ui/LogbookWidget.cpp \
ui/LotwDialog.cpp \
ui/MainWindow.cpp \
ui/MapWidget.cpp \
ui/NewContactWidget.cpp \
ui/RigWidget.cpp \
ui/RotatorWidget.cpp \
ui/SettingsDialog.cpp \
ui/StatisticsWidget.cpp \
ui/WsjtxWidget.cpp
HEADERS += \
core/ClubLog.h \
core/Conditions.h \
core/Cty.h \
core/Fldigi.h \
core/HamQTH.h \
core/Lotw.h \
core/Migration.h \
core/Rig.h \
core/Rotator.h \
core/Wsjtx.h \
core/utils.h \
data/Band.h \
data/Data.h \
data/DxSpot.h \
data/Dxcc.h \
logformat/AdiFormat.h \
logformat/AdxFormat.h \
logformat/JsonFormat.h \
logformat/LogFormat.h \
models/DxccTableModel.h \
models/LogbookModel.h \
models/RigTypeModel.h \
models/RotTypeModel.h \
models/SqlListModel.h \
ui/BandmapWidget.h \
ui/ClockWidget.h \
ui/DxWidget.h \
ui/DxccTableWidget.h \
ui/ExportDialog.h \
ui/ImportDialog.h \
ui/LogbookWidget.h \
ui/LotwDialog.h \
ui/MainWindow.h \
ui/MapWidget.h \
ui/NewContactWidget.h \
ui/RigWidget.h \
ui/RotatorWidget.h \
ui/SettingsDialog.h \
ui/StatisticsWidget.h \
ui/WsjtxWidget.h
FORMS += \
ui/BandmapWidget.ui \
ui/ClockWidget.ui \
ui/DxWidget.ui \
ui/ExportDialog.ui \
ui/ImportDialog.ui \
ui/LogbookWidget.ui \
ui/LotwDialog.ui \
ui/MainWindow.ui \
ui/NewContactWidget.ui \
ui/RigWidget.ui \
ui/RotatorWidget.ui \
ui/SettingsDialog.ui \
ui/StatisticsWidget.ui \
ui/WsjtxWidget.ui
RESOURCES += \
i18n/i18n.qrc \
res/flags/flags.qrc \
res/icons/icons.qrc \
res/res.qrc
OTHER_FILES += \
res/stylesheet.css \
res/qlog.rc \
res/qlog.desktop
TRANSLATIONS = i18n/qlog_de.ts
RC_ICONS = res/qlog.ico
ICON = res/qlog.icns
unix:!macx {
isEmpty(PREFIX) {
PREFIX = /usr/local
}
target.path = $$PREFIX/bin
desktop.path = $$PREFIX/share/applications/
desktop.files += res/$${TARGET}.desktop
icon.path = $$PREFIX/share/icons/hicolor/256x256/apps
icon.files += res/$${TARGET}.png
INSTALLS += target desktop icon
INCLUDEPATH += /usr/local/include
LIBS += -L/usr/local/lib -lhamlib
}
macx: {
INCLUDEPATH += /usr/local/include
LIBS += -L/usr/local/lib -lhamlib
DISTFILES +=
}