blob: dcdd8961c8dff8d2206dc8af26c85fd4133eea9d (
plain)
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
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-21T13:21:39
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = csgo_stats
TEMPLATE = app
SOURCES += main.cpp\
user_select_dialog.cpp \
file_download.cpp \
stats_display_window.cpp \
parse_file.cpp
HEADERS += user_select_dialog.h \
file_download.h \
stats_display_window.h \
parse_file.h
FORMS += user_select_dialog.ui \
stats_display_window.ui
RESOURCES += \
csgo_images.qrc
|