~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to libs/kotext/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
    KoText.cpp
11
11
    KoTextBlockData.cpp
12
12
    KoTextBlockBorderData.cpp
 
13
    KoTextBlockPaintStrategyBase.cpp
13
14
    KoTextDocumentLayout.cpp
14
15
    KoTextOdfSaveHelper.cpp
15
16
    KoTextPaste.cpp
16
17
    KoTextDocument.cpp
17
18
    KoTextEditor.cpp
18
19
    KoList.cpp
19
 
    KoPageFormat.cpp
20
20
 
21
21
    KoTextEditingRegistry.cpp
22
22
    KoTextEditingFactory.cpp
52
52
    KoTextPage.cpp
53
53
    KoPageProvider.cpp
54
54
    KoTableColumnAndRowStyleManager.cpp
55
 
    KoUndoStack.cpp
 
55
    KoTextInlineRdf.cpp
 
56
    KoTextMeta.cpp
56
57
 
57
58
    styles/Styles_p.cpp
58
59
    styles/KoCharacterStyle.cpp
69
70
    styles/KoTableFormat_p.cpp
70
71
    styles/KoTableColumnFormat.cpp
71
72
    styles/KoTableRowFormat.cpp
 
73
    styles/KoSectionStyle.cpp
72
74
    opendocument/KoTextSharedLoadingData.cpp
73
75
    opendocument/KoTextSharedSavingData.cpp
74
76
    opendocument/KoTextLoader.cpp
80
82
    KoTextDrag.cpp
81
83
)
82
84
 
 
85
if( Soprano_FOUND )
 
86
    set(kotext_LIB_SRCS ${kotext_LIB_SRCS}
 
87
        KoTextRdfCore.cpp
 
88
    )
 
89
endif( Soprano_FOUND )
 
90
 
83
91
kde4_add_library(kotext SHARED ${kotext_LIB_SRCS})
84
92
 
85
93
target_link_libraries(kotext flake ${KDE4_KUTILS_LIBS})
 
94
if( Soprano_FOUND )
 
95
    target_link_libraries(kotext ${SOPRANO_LIBRARIES})
 
96
endif( Soprano_FOUND )
86
97
target_link_libraries(kotext LINK_INTERFACE_LIBRARIES flake)
87
98
 
88
99
set_target_properties(kotext PROPERTIES
102
113
    KoTextEditingFactory.h
103
114
    KoTextEditingPlugin.h
104
115
    KoTextEditingRegistry.h
105
 
    KoPageFormat.h
106
116
    KoBookmark.h
107
117
    KoBookmarkManager.h
108
118
    KoInlineTextObjectManager.h
120
130
    KoVariable.h
121
131
    KoVariableManager.h
122
132
    KoVariableRegistry.h
123
 
    KoUndoStack.h
 
133
    KoTextRdfCore.h
 
134
    KoTextInlineRdf.h
 
135
    KoTextMeta.h
124
136
 
125
137
    DESTINATION
126
138
    ${INCLUDE_INSTALL_DIR} COMPONENT Devel
138
150
    styles/KoTableFormat.h
139
151
    styles/KoTableColumnFormat.h
140
152
    styles/KoTableRowFormat.h
 
153
    styles/KoSectionStyle.h
141
154
    styles/KoStyleManager.h
142
155
    DESTINATION
143
156
    ${INCLUDE_INSTALL_DIR}/styles COMPONENT Devel