forked from HearthSim/LotusTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LotusTracker.pro
173 lines (144 loc) · 4.29 KB
/
LotusTracker.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
169
170
171
172
173
#-------------------------------------------------
#
# Project created by QtCreator 2018-04-20T21:27:58
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = LotusTracker
TEMPLATE = app
VERSION = 1.3.0
CONFIG += c++11
CONFIG(debug, debug|release)
# asmCrashReport - https://github.com/asmaloney/asmCrashReport
include(asmCrashReport.pri)
DESTDIR = build
OBJECTS_DIR = tmp
MOC_DIR = tmp
RCC_DIR = tmp
UI_DIR = tmp
# 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
HEADERS += \
src/api/lotusapi.h \
src/api/requestdata.h \
src/api/rqtparsedeckposside.h \
src/api/rqtplayerdeck.h \
src/api/rqtplayerdeckpublish.h \
src/api/rqtplayerdeckupdate.h \
src/api/rqtupdateplayerinventory.h \
src/api/rqtupdateplayercollection.h \
src/api/rqtuploadmatch.h \
src/api/rqtuploadeventresult.h \
src/api/rqtuploadplayermatch.h \
src/entity/card.h \
src/entity/deck.h \
src/entity/deckarch.h \
src/entity/user.h \
src/entity/matchinfo.h \
src/entity/matchplayer.h \
src/entity/matchstatediff.h \
src/entity/matchzone.h \
src/entity/matchzonetransfer.h \
src/entity/opponentinfo.h \
src/mtg/mtgarena.h \
src/mtg/mtgalogparser.h \
src/mtg/mtgalogwatcher.h \
src/mtg/mtgamatch.h \
src/mtg/mtgcards.h \
src/mtg/mtgdecksarch.h \
src/ui/cardblinkinfo.h \
src/ui/deckoverlaybase.h \
src/ui/deckoverlaydraft.h \
src/ui/deckoverlayopponent.h \
src/ui/deckoverlayplayer.h \
src/ui/preferencesscreen.h \
src/ui/startscreen.h \
src/ui/tababout.h \
src/ui/tabgeneral.h \
src/ui/tablogs.h \
src/ui/taboverlay.h \
src/ui/trayicon.h \
src/utils/appsettings.h \
src/utils/logger.h \
src/updater/sparkleupdater.h \
src/credentials.h \
src/ganalytics.h \
src/lotustracker.h \
src/macros.h \
src/transformations.h \
src/urls.h
SOURCES += \
src/api/lotusapi.cpp \
src/main.cpp \
src/ganalytics.cpp \
src/lotustracker.cpp \
src/transformations.cpp \
src/entity/deck.cpp \
src/entity/matchinfo.cpp \
src/mtg/mtgarena.cpp \
src/mtg/mtgalogparser.cpp \
src/mtg/mtgalogwatcher.cpp \
src/mtg/mtgamatch.cpp \
src/mtg/mtgcards.cpp \
src/mtg/mtgdecksarch.cpp \
src/ui/deckoverlaybase.cpp \
src/ui/deckoverlaydraft.cpp \
src/ui/deckoverlayopponent.cpp \
src/ui/deckoverlayplayer.cpp \
src/ui/preferencesscreen.cpp \
src/ui/startscreen.cpp \
src/ui/tababout.cpp \
src/ui/tabgeneral.cpp \
src/ui/tablogs.cpp \
src/ui/taboverlay.cpp \
src/ui/trayicon.cpp \
src/utils/appsettings.cpp \
src/utils/logger.cpp
FORMS += \
src/ui/decktrackerbase.ui \
src/ui/preferences.ui \
src/ui/start.ui \
src/ui/tababout.ui \
src/ui/tabgeneral.ui \
src/ui/tablogs.ui \
src/ui/taboverlay.ui
DEFINES += VERSION=\\\"$$VERSION\\\"
RESOURCES += resources.qrc
mac {
QT += macextras
ICON = res/icons/icon.icns
DEFINES += PLATFORM=\\\"mac\\\"
QMAKE_INFO_PLIST = Info.plist.app
INCLUDEPATH += "\ -F/Library/Frameworks"
LIBS += -framework ApplicationServices -F/Library/Frameworks \
-framework AppKit -framework Sparkle
HEADERS += src/utils/macautostart.h \
src/utils/cocoainitializer.h \
src/utils/macwindowfinder.h \
src/updater/macsparkleupdater.h
SOURCES += src/utils/macautostart.cpp \
src/utils/macwindowfinder.cpp
OBJECTIVE_SOURCES += \
src/utils/cocoainitializer.mm \
src/updater/macsparkleupdater.mm
}
win32 {
QT += winextras
RC_FILE += lotustracker.rc
CONFIG += embed_manifest_exe
DEFINES += PLATFORM=\\\"win32\\\"
DEFINES += _CRT_SECURE_NO_WARNINGS
INCLUDEPATH += ../WinSparkle/include
LIBS += -luser32 -lpsapi
LIBS += -L../WinSparkle/Release -lWinSparkle
HEADERS += src/utils/winautostart.h \
src/utils/winwindowfinder.h \
src/updater/winsparkleupdater.h
SOURCES += src/utils/winautostart.cpp \
src/utils/winwindowfinder.cpp \
src/updater/winsparkleupdater.cpp
}