xref: /AOO41X/main/sw/Library_msword.mk (revision c42e87e31ef440175195aacd42fdea1e272b3aef)
1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24$(eval $(call gb_Library_Library,msword))
25
26$(eval $(call gb_Library_set_componentfile,msword,sw/util/msword))
27
28$(eval $(call gb_Library_set_include,msword,\
29    -I$(SRCDIR)/sw/source/core/inc \
30    -I$(SRCDIR)/sw/source/ui/inc \
31    -I$(SRCDIR)/sw/source/filter/inc \
32    -I$(SRCDIR)/sw/inc/pch \
33    -I$(SRCDIR)/sw/inc \
34    -I$(WORKDIR)/inc/sw/sdi \
35    -I$(WORKDIR)/Misc/sw/ \
36    $$(INCLUDE) \
37    -I$(OUTDIR)/inc/offuh \
38    -I$(OUTDIR)/inc/sw \
39))
40
41$(eval $(call gb_Library_set_defs,msword,\
42    $$(DEFS) \
43))
44
45$(eval $(call gb_Library_add_linked_libs,msword,\
46    basegfx \
47    comphelper \
48    cppu \
49    cppuhelper \
50    editeng \
51    i18nisolang1 \
52    i18nutil \
53    icuuc \
54    msfilter \
55    sal \
56    sfx \
57    sot \
58    stl \
59    svl \
60    svt \
61    svx \
62    svxcore \
63    sw \
64    ootk \
65    tl \
66    ucbhelper \
67    utl \
68    vcl \
69    $(gb_STDLIBS) \
70))
71
72$(eval $(call gb_Library_add_exception_objects,msword,\
73    sw/source/filter/rtf/rtffld \
74    sw/source/filter/rtf/rtffly \
75    sw/source/filter/rtf/rtfnum \
76    sw/source/filter/rtf/rtftbl \
77    sw/source/filter/rtf/swparrtf \
78    sw/source/filter/ww8/rtfattributeoutput \
79    sw/source/filter/ww8/rtfexport \
80    sw/source/filter/ww8/rtfexportfilter \
81    sw/source/filter/ww8/rtfimportfilter \
82    sw/source/filter/ww8/rtfsdrexport \
83    sw/source/filter/ww8/WW8FFData \
84    sw/source/filter/ww8/WW8FibData \
85    sw/source/filter/ww8/WW8Sttbf \
86    sw/source/filter/ww8/WW8TableInfo \
87    sw/source/filter/ww8/fields \
88    sw/source/filter/ww8/styles \
89    sw/source/filter/ww8/tracer \
90    sw/source/filter/ww8/writerhelper \
91    sw/source/filter/ww8/writerwordglue \
92    sw/source/filter/ww8/wrtw8esh \
93    sw/source/filter/ww8/wrtw8nds \
94    sw/source/filter/ww8/wrtw8num \
95    sw/source/filter/ww8/wrtw8sty \
96    sw/source/filter/ww8/wrtww8 \
97    sw/source/filter/ww8/wrtww8gr \
98    sw/source/filter/ww8/ww8atr \
99    sw/source/filter/ww8/ww8glsy \
100    sw/source/filter/ww8/ww8graf \
101    sw/source/filter/ww8/ww8graf2 \
102    sw/source/filter/ww8/ww8par \
103    sw/source/filter/ww8/ww8par2 \
104    sw/source/filter/ww8/ww8par3 \
105    sw/source/filter/ww8/ww8par4 \
106    sw/source/filter/ww8/ww8par5 \
107    sw/source/filter/ww8/ww8par6 \
108    sw/source/filter/ww8/ww8scan \
109))
110
111# vim: set noet sw=4 ts=4:
112