-
Notifications
You must be signed in to change notification settings - Fork 0
/
harbour-qtimetable.pro
117 lines (106 loc) · 3.79 KB
/
harbour-qtimetable.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
# The name of your app.
# NOTICE: name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, following needs to be
# done to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
TARGET = harbour-qtimetable
QT += sql core quick qml xml
CONFIG += sailfishapp quick2 qml link_pkgconfig
PKGCONFIG += sailfishapp
database.files = stations.db
database.path = /usr/share/harbour-qtimetable/data
notification.files = notifications/harbour.qtimetable.error.conf
notification.path = /usr/share/lipstick/notificationcategories
INSTALLS += desktop icon database notification
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
QMAKE_CXXFLAGS += -std=c++11
SOURCES += src/qtimetable.cpp \
src/listitems/locationitem.cpp \
src/listmodels/resultlistmodel.cpp \
src/db/databasehandler.cpp \
src/uihandlers/timehandler.cpp \
src/uihandlers/timetablehandler.cpp \
src/db/threadeddbhandler.cpp \
src/core/sbbhandler.cpp \
src/net/sbbservercommunication.cpp \
src/net/sbbrequest.cpp \
src/query/sbbquery.cpp \
src/query/sbbquerycontainer.cpp \
src/util/serializable.cpp \
src/core/sbbconnectionhandler.cpp \
src/query/sbbconnectionquery.cpp \
src/query/sbbrelativeconnectionquery.cpp \
src/domout/domaddress.cpp \
src/domout/domstation.cpp \
src/domout/domflags.cpp \
src/domout/domdate.cpp \
src/listitems/connectionitem.cpp \
src/util/duration.cpp \
src/listitems/connectionstepitem.cpp \
src/listitems/stopitem.cpp \
src/domin/station.cpp \
src/domin/address.cpp \
src/domin/journey.cpp \
src/util/settingshandler.cpp \
src/listitems/favoriteconnectionitem.cpp
OTHER_FILES += qml/qtimetable.qml \
qml/cover/CoverPage.qml \
qml/pages/Help.qml \
qml/pages/TimeTable.qml \
qml/components/TimeTableInput.qml \
qml/pages/Favorites.qml \
qml/pages/DepArr.qml \
qml/pages/Settings.qml \
qml/components/SearchDialog.qml \
qml/components/DepArrSwitch.qml \
harbour-qtimetable.desktop \
rpm/harbour-qtimetable.spec \
qml/components/SearchListItem.qml \
qml/components/DeletableTextField.qml \
qml/pages/ConnectionOverview.qml \
qml/components/ConnectionOverviewItem.qml \
qml/components/ConnectionOverviewHeader.qml \
qml/pages/ConnectionStep.qml \
qml/components/ConnectionStepItem.qml \
qml/components/FavoriteConnectionItem.qml
HEADERS += \
src/listitems/locationitem.h \
src/listmodels/resultlistmodel.h \
src/listitems/listitem.h \
src/db/databasehandler.h \
src/uihandlers/timehandler.h \
src/uihandlers/timetablehandler.h \
src/db/threadeddbhandler.h \
src/db/db.h \
src/core/sbbhandler.h \
src/net/sbbservercommunication.h \
src/net/sbbrequest.h \
src/query/sbbquery.h \
src/query/sbbquerycontainer.h \
src/util/serializable.h \
src/util/globalshared.h \
src/core/sbbconnectionhandler.h \
src/query/sbbconnectionquery.h \
src/query/sbbrelativeconnectionquery.h \
src/domout/domaddress.h \
src/domout/domstation.h \
src/domout/domflags.h \
src/domout/domdate.h \
src/listmodels/stationlistmodel.h \
src/listitems/connectionitem.h \
src/util/duration.h \
src/listitems/connectionstepitem.h \
src/listitems/stopitem.h \
src/domin/location.h \
src/domin/station.h \
src/domin/address.h \
src/domin/journey.h \
src/listmodels/connectionlistmodel.h \
src/util/qdomnodeiterator.h \
src/listmodels/connectionstepmodel.h \
src/util/settingshandler.h \
src/listitems/favoriteconnectionitem.h \
src/listmodels/favoriteconnectionmodel.h