-
Notifications
You must be signed in to change notification settings - Fork 2
/
IVLEDownloader.pro
76 lines (68 loc) · 1.45 KB
/
IVLEDownloader.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-08-24T21:28:43
#
#-------------------------------------------------
QT += core gui sql\
widgets\
webkitwidgets\
network
CONFIG +=c++11 app_bundle
macx{
QMAKE_CXXFLAGS = -mmacosx-version-min=10.7 -std=gnu++0x -stdlib=libc++
}
TARGET = IVLEDownloader
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS\
MAXRECENT=5
SOURCES += main.cpp\
mainwindow.cpp \
settingsdialog.cpp \
ivlefetcher.cpp \
settings.cpp \
downloader.cpp \
recentfileaction.cpp \
announcementsmenu.cpp \
announcementaction.cpp \
advanceddialog.cpp \
lapi.cpp \
promise.cpp \
externalpageparser.cpp \
globalvar.cpp \
downloaderui.cpp \
qtjson.cpp \
form.cpp \
dialog.cpp \
additem.cpp \
item.cpp \
parsing.cpp
HEADERS += mainwindow.h \
settingsdialog.h \
ivlefetcher.h \
settings.h \
downloader.h \
recentfileaction.h \
announcementsmenu.h \
announcementaction.h \
advanceddialog.h \
lapi.h \
promise.h \
externalpageparser.h \
globalvar.h \
downloaderui.h \
qtjson.h \
form.h \
dialog.h \
additem.h \
item.h \
parsing.h
FORMS += mainwindow.ui \
settingsdialog.ui \
advanceddialog.ui \
downloaderui.ui \
form.ui \
dialog.ui \
additem.ui \
item.ui
RESOURCES += \
res.qrc