blob: c8be516119745a4bdde973290bfdbc78d5d93460 (
plain)
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
|
#-------------------------------------------------
#
#
#
#-------------------------------------------------
QT += core gui widgets \
webengine webenginewidgets
TARGET = poi
TEMPLATE = app
SOURCES += main.cpp \
mainwindow.cpp \
browser.cpp \
widgets/webviewtabbar.cpp \
settings.cpp \
forms/profiledialog.cpp \
webengine/webengineprofile.cpp \
forms/downloaddialog.cpp \
webengine/downloaditemform.cpp \
webengine/urlinterceptor.cpp \
forms/blockerdialog.cpp \
webengine/blockersubscription.cpp \
webengine/blockerrule.cpp
HEADERS += mainwindow.h \
browser.h \
widgets/webviewtabbar.h \
settings.h \
forms/profiledialog.h \
webengine/webengineprofile.h \
forms/downloaddialog.h \
webengine/downloaditemform.h \
webengine/urlinterceptor.h \
forms/blockerdialog.h \
webengine/blockersubscription.h \
webengine/blockerrule.h
FORMS += mainwindow.ui \
forms/profiledialog.ui \
forms/downloaddialog.ui \
webengine/downloaditemform.ui \
forms/blockerdialog.ui
RESOURCES += \
data/resources.qrc
|