blob: 5fc6bc8b7ddb9a6ea3994de6e2c8455e4b539d0d (
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
|
TARGET = Bazaar
TEMPLATE = lib
include(../../qtcreatorplugin.pri)
include(bazaar_dependencies.pri)
DEFINES += QT_NO_CAST_FROM_ASCII
SOURCES += \
bazaarclient.cpp \
bazaarcontrol.cpp \
bazaarplugin.cpp \
optionspage.cpp \
bazaarsettings.cpp \
commiteditor.cpp \
bazaarcommitwidget.cpp \
bazaareditor.cpp \
annotationhighlighter.cpp \
pullorpushdialog.cpp \
branchinfo.cpp \
clonewizardpage.cpp \
clonewizard.cpp \
cloneoptionspanel.cpp
HEADERS += \
bazaarclient.h \
constants.h \
bazaarcontrol.h \
bazaarplugin.h \
optionspage.h \
bazaarsettings.h \
commiteditor.h \
bazaarcommitwidget.h \
bazaareditor.h \
annotationhighlighter.h \
pullorpushdialog.h \
branchinfo.h \
clonewizard.h \
clonewizardpage.h \
cloneoptionspanel.h
FORMS += \
optionspage.ui \
revertdialog.ui \
bazaarcommitpanel.ui \
pullorpushdialog.ui \
cloneoptionspanel.ui
RESOURCES += bazaar.qrc
|