-
Notifications
You must be signed in to change notification settings - Fork 16
/
IVLEDownloader.pro
55 lines (47 loc) · 1.1 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
#-------------------------------------------------
#
# Project created by QtCreator 2012-08-24T21:28:43
#
#-------------------------------------------------
QT += core gui\
widgets\
webkitwidgets\
network
CONFIG +=c++11
macx{
QMAKE_CXXFLAGS = -mmacosx-version-min=10.7 -std=gnu++0x -stdlib=libc++
}
TARGET = IVLEDownloader
TEMPLATE = app
DEFINES += APIKEY=\\\"k0z3B5Ng9rhy3MKVAKsGG\\\" \
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
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
FORMS += mainwindow.ui \
settingsdialog.ui \
advanceddialog.ui
RESOURCES += \
res.qrc