-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqrail.pri
94 lines (87 loc) · 3.87 KB
/
qrail.pri
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
#
# This file is part of QRail.
#
# QRail is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# QRail is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with QRail. If not, see <http://www.gnu.org/licenses/>.
#
CONFIG *= qt
QT *= core
# Public header files are kept in a separate 'include' folder
INCLUDEPATH += $$PWD/src/include \
$$PWD/qtcsv/include/qtcsv \
.
SOURCES += \
$$PWD/src/engines/alerts/alertsmessage.cpp \
$$PWD/src/engines/router/routerplanner.cpp \
$$PWD/src/engines/router/routerroute.cpp \
$$PWD/src/engines/router/routertransfer.cpp \
$$PWD/src/engines/router/routerrouteleg.cpp \
$$PWD/src/engines/router/routerroutelegend.cpp \
$$PWD/src/engines/router/routerstationstopprofile.cpp \
$$PWD/src/engines/router/routertrainprofile.cpp \
$$PWD/src/engines/router/routerjourney.cpp \
$$PWD/src/engines/router/routernulljourney.cpp \
$$PWD/src/engines/station/stationstation.cpp \
$$PWD/src/engines/station/stationnullstation.cpp \
$$PWD/src/engines/station/stationfactory.cpp \
$$PWD/src/engines/vehicle/vehiclevehicle.cpp \
$$PWD/src/engines/vehicle/vehiclenullvehicle.cpp \
$$PWD/src/engines/vehicle/vehiclefactory.cpp \
$$PWD/src/engines/vehicle/vehiclestop.cpp \
$$PWD/src/database/databasemanager.cpp \
$$PWD/src/network/networkmanager.cpp \
$$PWD/src/network/networkdispatcher.cpp \
$$PWD/src/fragments/fragmentsfragment.cpp \
$$PWD/src/fragments/fragmentspage.cpp \
$$PWD/src/fragments/fragmentsfactory.cpp \
$$PWD/src/fragments/fragmentsdispatcher.cpp \
$$PWD/src/qrail.cpp \
$$PWD/src/network/networkeventsource.cpp \
$$PWD/src/fragments/fragmentscache.cpp \
$$PWD/src/engines/router/routersnapshotjourney.cpp
HEADERS += \
$$PWD/src/include/engines/alerts/alertsmessage.h \
$$PWD/src/include/engines/router/routerplanner.h \
$$PWD/src/include/engines/router/routerroute.h \
$$PWD/src/include/engines/router/routertransfer.h \
$$PWD/src/include/engines/router/routerrouteleg.h \
$$PWD/src/include/engines/router/routerroutelegend.h \
$$PWD/src/include/engines/router/routerstationstopprofile.h \
$$PWD/src/include/engines/router/routertrainprofile.h \
$$PWD/src/include/engines/router/routerjourney.h \
$$PWD/src/include/engines/station/stationstation.h \
$$PWD/src/include/engines/station/stationnullstation.h \
$$PWD/src/include/engines/station/stationfactory.h \
$$PWD/src/include/engines/vehicle/vehiclevehicle.h \
$$PWD/src/include/engines/vehicle/vehiclenullvehicle.h \
$$PWD/src/include/engines/vehicle/vehiclefactory.h \
$$PWD/src/include/engines/vehicle/vehiclestop.h \
$$PWD/src/include/database/databasemanager.h \
$$PWD/src/include/network/networkmanager.h \
$$PWD/src/include/network/networkdispatcher.h \
$$PWD/src/include/fragments/fragmentsfragment.h \
$$PWD/src/include/fragments/fragmentspage.h \
$$PWD/src/include/fragments/fragmentsfactory.h \
$$PWD/src/include/fragments/fragmentsdispatcher.h \
$$PWD/src/include/fragments/fragmentscache.h \
$$PWD/qtcsv/include/qtcsv/stringdata.h \
$$PWD/src/include/qrail.h \
$$PWD/src/include/engines/router/routernulljourney.h \
$$PWD/src/include/network/networkeventsource.h \
$$PWD/src/include/engines/router/routersnapshotjourney.h
DISTFILES += \
$$PWD/rpm/qrail.changes
OTHER_FILES += \
$$PWD/rpm/qrail.spec
RESOURCES += \
$$PWD/resources.qrc