forked from isaevi/PodcastLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodcastLoader.pro
More file actions
49 lines (44 loc) · 948 Bytes
/
PodcastLoader.pro
File metadata and controls
49 lines (44 loc) · 948 Bytes
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
# CONFIG += console
HEADERS += \
recordinfo.h \
parser.h \
downloader.h \
rssfetcher.h \
feeddata.h \
rssapplication.h \
recordsmanager.h \
entrypoint.h \
feedmanager.h \
rssmanager.h \
helperinterfaces.h
SOURCES += main.cpp \
recordinfo.cpp \
parser.cpp \
downloader.cpp \
rssfetcher.cpp \
feeddata.cpp \
rssapplication.cpp \
recordsmanager.cpp \
entrypoint.cpp \
feedmanager.cpp \
rssmanager.cpp
QT += network xml widgets xmlpatterns quick qml
QMAKE_CXXFLAGS = -std=c++11
#CONFIG += c++11
# install
target.path = $$[QT_INSTALL_EXAMPLES]/xml/rsslisting
INSTALLS += target
FORMS +=
OTHER_FILES += \
main.qml \
LabeledTextInput.qml \
FeedDetails.qml \
FeedItemDelegate.qml \
img/settings.png \
RssRecordsDelegate.qml \
img/download_media.png \
BusyIndicator.qml \
img/busy.png \
ScrollBar.qml
RESOURCES += \
res.qrc