blob: 192530e709dd32f623d56c1d6d0e1efe1e44d6d9 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
TEMPLATE = lib
DEFINES += MAKE_KTEXTEDITOR_LIB
include( $(KDELIBS)/win/common.pro )
LIBS += $$KDELIBDESTDIR/tdecore$$KDELIB_SUFFIX \
$$KDELIBDESTDIR/tdeui$$KDELIB_SUFFIX $$KDELIBDESTDIR/tdefx$$KDELIB_SUFFIX \
$$KDELIBDESTDIR\dcop$$KDELIB_SUFFIX $$KDELIBDESTDIR\kparts$$KDELIB_SUFFIX \
$$KDELIBDESTDIR\kio$$KDELIB_SUFFIX $$KDELIBDESTDIR\kabc$$KDELIB_SUFFIX \
$$KDELIBDESTDIR\kdewin32$$KDELIB_SUFFIX
INCLUDEPATH += $(KDELIBS)/interfaces $(KDELIBS)/interfaces/ktexteditor \
$(KDELIBS)/kabc
TARGET = ktexteditor$$KDEBUG
system( bash kmoc )
system( bash kdcopidl )
SOURCES = \
ktexteditor.cpp \
editinterface.cpp editinterfaceext.cpp \
clipboardinterface.cpp selectioninterface.cpp searchinterface.cpp \
codecompletioninterface.cpp wordwrapinterface.cpp blockselectioninterface.cpp \
configinterface.cpp cursorinterface.cpp dynwordwrapinterface.cpp \
printinterface.cpp highlightinginterface.cpp markinterface.cpp \
popupmenuinterface.cpp undointerface.cpp viewcursorinterface.cpp \
editdcopinterface.cpp clipboarddcopinterface.cpp \
selectiondcopinterface.cpp \
searchdcopinterface.cpp markinterfaceextension.cpp \
configinterfaceextension.cpp encodinginterface.cpp sessionconfiginterface.cpp \
viewstatusmsginterface.cpp editorchooser.cpp \
blockselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
encodingdcopinterface.cpp \
printdcopinterface.cpp \
undodcopinterface.cpp viewcursordcopinterface.cpp \
viewstatusmsgdcopinterface.cpp \
selectioninterfaceext.cpp \
texthintinterface.cpp variableinterface.cpp \
templateinterface.cpp
# generated:
SOURCES += \
selectionextdcopinterface_skel.cpp \
viewstatusmsgdcopinterface_skel.cpp \
viewcursordcopinterface_skel.cpp \
undodcopinterface_skel.cpp \
printdcopinterface_skel.cpp \
encodingdcopinterface_skel.cpp \
documentdcopinfo_skel.cpp \
blockselectiondcopinterface_skel.cpp \
searchdcopinterface_skel.cpp \
selectiondcopinterface_skel.cpp \
clipboarddcopinterface_skel.cpp \
editdcopinterface_skel.cpp \
\
selectionextdcopinterface_stub.cpp \
viewstatusmsgdcopinterface_stub.cpp \
viewcursordcopinterface_stub.cpp \
undodcopinterface_stub.cpp \
printdcopinterface_stub.cpp \
encodingdcopinterface_stub.cpp \
documentdcopinfo_stub.cpp \
blockselectiondcopinterface_stub.cpp \
searchdcopinterface_stub.cpp \
selectiondcopinterface_stub.cpp \
clipboarddcopinterface_stub.cpp \
editdcopinterface_stub.cpp
HEADERS =
INTERFACES = \
editorchooser_ui.ui
|