forked from xyzz/acquisition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacquisition.pro
107 lines (94 loc) · 2.13 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
TARGET = acquisition
TEMPLATE = app
QT += core gui network webkitwidgets testlib
win32 {
QT += winextras
}
unix {
LIBS += -ldl
}
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
include(deps/QsLog/QsLog.pri)
INCLUDEPATH += src deps
SOURCES += \
src/main.cpp\
src/mainwindow.cpp \
src/item.cpp \
src/column.cpp \
src/filters.cpp \
src/search.cpp \
src/items_model.cpp \
src/flowlayout.cpp \
src/imagecache.cpp \
src/logindialog.cpp \
src/itemsmanager.cpp \
src/datamanager.cpp \
deps/sqlite/sqlite3.c \
src/buyoutmanager.cpp \
src/util.cpp \
src/shop.cpp \
src/porting.cpp \
src/bucket.cpp \
src/itemlocation.cpp \
src/version.cpp \
src/application.cpp \
src/steamlogindialog.cpp \
src/modsfilter.cpp \
src/modlist.cpp \
src/logpanel.cpp \
src/itemsmanagerworker.cpp \
src/verticalscrollarea.cpp \
src/updatechecker.cpp \
src/autoonline.cpp \
src/filesystem.cpp \
test/testmain.cpp \
test/testdata.cpp \
test/testitem.cpp \
test/testshop.cpp \
test/testutil.cpp
HEADERS += \
src/item.h \
src/column.h \
src/filters.h \
src/search.h \
src/mainwindow.h \
src/items_model.h \
src/flowlayout.h \
src/imagecache.h \
src/logindialog.h \
src/itemsmanager.h \
src/datamanager.h \
deps/sqlite/sqlite3.h \
src/buyoutmanager.h \
src/util.h \
src/shop.h \
src/version.h \
src/porting.h \
src/bucket.h \
src/itemlocation.h \
src/itemconstants.h \
src/version_defines.h \
src/application.h \
src/steamlogindialog.h \
src/rapidjson_util.h \
src/modsfilter.h \
src/modlist.h \
src/logpanel.h \
src/itemsmanagerworker.h \
src/verticalscrollarea.h \
src/updatechecker.h \
src/autoonline.h \
src/filesystem.h \
test/testmain.h \
test/testdata.h \
test/testitem.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
RC_FILE = resources.rc