forked from xyzz/acquisition
-
Notifications
You must be signed in to change notification settings - Fork 5
/
acquisition.pro
138 lines (123 loc) · 2.67 KB
/
acquisition.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
TARGET = acquisition
TEMPLATE = app
QT += core gui network testlib
win32 {
QT += winextras
QT.testlib.CONFIG -= console
}
unix {
LIBS += -ldl
QMAKE_CXXFLAGS += -Wno-inconsistent-missing-override
}
nowebengine {
DEFINES += NO_WEBENGINE
} else {
QT += webenginewidgets
}
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
include(deps/QsLog/QsLog.pri)
INCLUDEPATH += src deps deps/boost-header-only "C:\Program Files\OpenSSL-Win64\include"
LIBS += -L"C:\Program Files\OpenSSL-Win64\lib" -llibcrypto -llibssl
SOURCES += \
deps/sqlite/sqlite3.c \
src/application.cpp \
src/autoonline.cpp \
src/bucket.cpp \
src/buyoutmanager.cpp \
src/column.cpp \
src/currencymanager.cpp \
src/influence.cpp \
src/itemcategories.cpp \
src/sqlitedatastore.cpp \
src/filesystem.cpp \
src/filters.cpp \
src/flowlayout.cpp \
src/imagecache.cpp \
src/influence.cpp \
src/item.cpp \
src/itemlocation.cpp \
src/items_model.cpp \
src/itemsmanager.cpp \
src/itemsmanagerworker.cpp \
src/itemtooltip.cpp \
src/logindialog.cpp \
src/logpanel.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/memorydatastore.cpp \
src/modlist.cpp \
src/modsfilter.cpp \
src/porting.cpp \
src/replytimeout.cpp \
src/search.cpp \
src/shop.cpp \
src/steamlogindialog.cpp \
src/tabcache.cpp \
src/updatechecker.cpp \
src/util.cpp \
src/version.cpp \
src/verticalscrollarea.cpp \
test/testdata.cpp \
test/testitem.cpp \
test/testitemsmanager.cpp \
test/testmain.cpp \
test/testshop.cpp \
test/testutil.cpp
HEADERS += \
deps/sqlite/sqlite3.h \
src/application.h \
src/autoonline.h \
src/bucket.h \
src/buyoutmanager.h \
src/column.h \
src/currencymanager.h \
src/datastore.h \
src/influence.h \
src/itemcategories.h \
src/sqlitedatastore.h \
src/filesystem.h \
src/filters.h \
src/flowlayout.h \
src/imagecache.h \
src/influence.h \
src/item.h \
src/itemconstants.h \
src/itemlocation.h \
src/items_model.h \
src/itemsmanager.h \
src/itemsmanagerworker.h \
src/itemtooltip.h \
src/logindialog.h \
src/logpanel.h \
src/mainwindow.h \
src/memorydatastore.h \
src/modlist.h \
src/modsfilter.h \
src/porting.h \
src/rapidjson_util.h \
src/replytimeout.h \
src/search.h \
src/selfdestructingreply.h \
src/shop.h \
src/steamlogindialog.h \
src/tabcache.h \
src/updatechecker.h \
src/util.h \
src/version.h \
src/version_defines.h \
src/verticalscrollarea.h \
test/testdata.h \
test/testitem.h \
test/testitemsmanager.h \
test/testmain.h \
test/testshop.h \
test/testutil.h
FORMS += \
forms/mainwindow.ui \
forms/logindialog.ui \
forms/steamlogindialog.ui
#CONFIG += c++11
DEPENDPATH *= $${INCLUDEPATH}
RESOURCES += resources.qrc \
deps/qdarkstyle/style.qrc
RC_FILE = resources.rc