blob: 8f33dd896d45627119b5fd022a90128d6922b3cd (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-21T13:21:39
#
#-------------------------------------------------
QT += core gui network datavisualization charts
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 \
user_management.cpp \
message_box.cpp \
graphical_stats.cpp \
game_integration_window.cpp
HEADERS += user_select_dialog.h \
file_download.h \
stats_display_window.h \
parse_file.h \
user_management.h \
message_box.h \
graphical_stats.h \
game_integration_window.h
FORMS += user_select_dialog.ui \
stats_display_window.ui \
user_management.ui \
graphical_stats.ui \
game_integration_window.ui
RESOURCES += \
csgo_images.qrc
DISTFILES +=
|