blob: 5bdc8e254552792c2fbb49f26efa276ea58e16e0 (
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
|
QT += network
include(../../qtcreatorplugin.pri)
HEADERS += cpasterplugin.h \
settingspage.h \
protocol.h \
pasteview.h \
cpasterconstants.h \
pastebindotcomprotocol.h \
pastebindotcaprotocol.h \
settings.h \
pasteselectdialog.h \
columnindicatortextedit.h \
fileshareprotocol.h \
fileshareprotocolsettingspage.h \
kdepasteprotocol.h \
urlopenprotocol.h
SOURCES += cpasterplugin.cpp \
settingspage.cpp \
protocol.cpp \
pasteview.cpp \
pastebindotcomprotocol.cpp \
pastebindotcaprotocol.cpp \
settings.cpp \
pasteselectdialog.cpp \
columnindicatortextedit.cpp \
fileshareprotocol.cpp \
fileshareprotocolsettingspage.cpp \
kdepasteprotocol.cpp \
urlopenprotocol.cpp
FORMS += settingspage.ui \
pasteselect.ui \
pasteview.ui \
pastebindotcomsettings.ui \
fileshareprotocolsettingswidget.ui
include(../../shared/cpaster/cpaster.pri)
RESOURCES += \
cpaster.qrc
|