blob: dc4dfd4ae906fc3c673cde46716317b49b19ecba (
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
|
QT += network
TEMPLATE = lib
TARGET = CodePaster
include(../../qtcreatorplugin.pri)
include(cpaster_dependencies.pri)
HEADERS += cpasterplugin.h \
settingspage.h \
protocol.h \
codepasterprotocol.h \
pasteview.h \
codepastersettings.h \
pastebindotcomprotocol.h \
pastebindotcomsettings.h
SOURCES += cpasterplugin.cpp \
settingspage.cpp \
protocol.cpp \
codepasterprotocol.cpp \
pasteview.cpp \
codepastersettings.cpp \
pastebindotcomprotocol.cpp \
pastebindotcomsettings.cpp
FORMS += settingspage.ui \
pasteselect.ui \
pasteview.ui \
pastebindotcomsettings.ui
include(../../shared/cpaster/cpaster.pri)
|