-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmxf.pro
156 lines (146 loc) · 4.11 KB
/
cmxf.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-08T21:04:56
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Transfer_Tool
TEMPLATE = app
RC_FILE = cmxf.rc
RESOURCES = cmxf.qrc
# The application version
VERSION = 1.0.3
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
win32 {
DEFINES += BUILDTIME=\\\"$$system('echo %time%')\\\"
DEFINES += BUILDDATE=\\\"$$system('echo %date%')\\\"
} else {
DEFINES += BUILDTIME=\\\"$$system(date '+%H:%M')\\\"
DEFINES += BUILDDATE=\\\"$$system(date '+%d/%m/%y')\\\"
}
SOURCES += main.cpp\
mainwindow.cpp \
database/database.cpp \
database/index.cpp \
settings.cpp \
models/index_model.cpp \
database/city.cpp \
data_types/city_weather.cpp \
data_types/string.cpp \
database/club.cpp \
database/club_comp.cpp \
database/club_comp_history.cpp \
database/colour.cpp \
database/continent.cpp \
database/name.cpp \
database/nation.cpp \
database/stadium.cpp \
database/staff_comp.cpp \
database/staff_comp_history.cpp \
database/staff_history.cpp \
database/official.cpp \
data_types/date.cpp \
database/non_player.cpp \
database/player.cpp \
database/staff.cpp \
database/staff_preferences.cpp \
importer/transfer_importer.cpp \
data_types/data_pointer.cpp \
data_types/ptr_club.cpp \
data_types/ptr_club_comp.cpp \
data_types/ptr_name.cpp \
data_types/ptr_staff.cpp \
data_types/staff_classification.cpp \
data_types/cm_char.cpp \
spreadsheet/spreadsheet.cpp \
progress_window.cpp \
data_types/year.cpp \
importer/vlookup_hash.cpp \
ui/summary_item.cpp \
ui/style_sheet.cpp \
data_types/ptr_nation.cpp \
data_types/job.cpp \
data_types/attribute.cpp \
data_types/ptr_player.cpp \
data_types/ptr_non_player.cpp \
data_types/cm_int.cpp \
data_types/cm_uchar.cpp \
exporter/exporter.cpp \
exporter/exporter_item.cpp \
exporter/exporter_model.cpp \
data_types/cm_short.cpp \
data_types/reputation.cpp \
data_types/wage.cpp \
data_types/ptr_preferences.cpp \
data_types/ability.cpp \
data_types/squad.cpp \
data_types/player_squad_number.cpp
HEADERS += mainwindow.h \
database/database.h \
database/index.h \
data_types/data_types.h \
settings.h \
models/index_model.h \
database/city.h \
data_types/city_weather.h \
data_types/weather.h \
data_types/string.h \
database/club.h \
database/club_comp.h \
database/club_comp_history.h \
database/colour.h \
database/continent.h \
database/name.h \
database/nation.h \
database/stadium.h \
database/staff_comp.h \
database/staff_comp_history.h \
database/staff_history.h \
database/official.h \
data_types/date.h \
database/non_player.h \
database/player.h \
database/staff.h \
database/staff_preferences.h \
importer/transfer_importer.h \
data_types/data_pointer.h \
data_types/ptr_club.h \
data_types/ptr_club_comp.h \
data_types/ptr_name.h \
data_types/ptr_staff.h \
data_types/staff_classification.h \
data_types/cm_char.h \
spreadsheet/spreadsheet.h \
progress_window.h \
data_types/year.h \
importer/vlookup_hash.h \
ui/summary_item.h \
ui/style_sheet.h \
data_types/ptr_nation.h \
data_types/job.h \
data_types/attribute.h \
data_types/ptr_player.h \
data_types/ptr_non_player.h \
data_types/cm_int.h \
data_types/cm_uchar.h \
exporter/exporter.h \
exporter/exporter_item.h \
exporter/exporter_model.h \
data_types/cm_short.h \
data_types/reputation.h \
data_types/wage.h \
data_types/ptr_preferences.h \
data_types/ability.h \
data_types/squad.h \
data_types/player_squad_number.h
FORMS += mainwindow.ui
DISTFILES += \
cmxf.rc \
delimiter_repair.txt \
import_template.csv \
readme.html \
vlookup_clubs.csv \
vlookup_clubs_prefix_suffix.csv \
vlookup_nations.csv \
vlookup_protected_players.csv