xref: /trunk/main/xmloff/Library_xof.mk (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1#*************************************************************************
2#
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# Copyright 2000, 2011 Oracle and/or its affiliates.
6#
7# OpenOffice.org - a multi-platform office productivity suite
8#
9# This file is part of OpenOffice.org.
10#
11# OpenOffice.org is free software: you can redistribute it and/or modify
12# it under the terms of the GNU Lesser General Public License version 3
13# only, as published by the Free Software Foundation.
14#
15# OpenOffice.org is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18# GNU Lesser General Public License version 3 for more details
19# (a copy is included in the LICENSE file that accompanied this code).
20#
21# You should have received a copy of the GNU Lesser General Public License
22# version 3 along with OpenOffice.org.  If not, see
23# <http://www.openoffice.org/license.html>
24# for a copy of the LGPLv3 License.
25#
26#*************************************************************************
27
28$(eval $(call gb_Library_Library,xof))
29
30$(eval $(call gb_Library_set_componentfile,xof,xmloff/source/transform/xof))
31
32$(eval $(call gb_Library_set_include,xof,\
33    -I$(SRCDIR)/xmloff/inc/pch \
34    -I$(SRCDIR)/xmloff/inc \
35    -I$(SRCDIR)/xmloff/source/inc \
36    $$(INCLUDE) \
37    -I$(OUTDIR)/inc/offuh \
38))
39
40$(eval $(call gb_Library_add_linked_libs,xof,\
41    comphelper \
42    cppu \
43    cppuhelper \
44    sal \
45    salhelper \
46    stl \
47    xo \
48    $(gb_STDLIBS) \
49))
50
51$(eval $(call gb_Library_add_exception_objects,xof,\
52    xmloff/source/transform/ChartOASISTContext \
53    xmloff/source/transform/ChartOOoTContext \
54    xmloff/source/transform/ChartPlotAreaOASISTContext \
55    xmloff/source/transform/ChartPlotAreaOOoTContext \
56    xmloff/source/transform/ControlOASISTContext \
57    xmloff/source/transform/ControlOOoTContext \
58    xmloff/source/transform/CreateElemTContext \
59    xmloff/source/transform/DeepTContext \
60    xmloff/source/transform/DlgOASISTContext \
61    xmloff/source/transform/DocumentTContext \
62    xmloff/source/transform/EventMap \
63    xmloff/source/transform/EventOASISTContext \
64    xmloff/source/transform/EventOOoTContext \
65    xmloff/source/transform/FlatTContext \
66    xmloff/source/transform/FormPropOASISTContext \
67    xmloff/source/transform/FormPropOOoTContext \
68    xmloff/source/transform/FrameOASISTContext \
69    xmloff/source/transform/FrameOOoTContext \
70    xmloff/source/transform/IgnoreTContext \
71    xmloff/source/transform/MergeElemTContext \
72    xmloff/source/transform/MetaTContext \
73    xmloff/source/transform/MutableAttrList \
74    xmloff/source/transform/NotesTContext \
75    xmloff/source/transform/OOo2Oasis \
76    xmloff/source/transform/Oasis2OOo \
77    xmloff/source/transform/PersAttrListTContext \
78    xmloff/source/transform/PersMixedContentTContext \
79    xmloff/source/transform/ProcAddAttrTContext \
80    xmloff/source/transform/ProcAttrTContext \
81    xmloff/source/transform/PropertyActionsOASIS \
82    xmloff/source/transform/PropertyActionsOOo \
83    xmloff/source/transform/RenameElemTContext \
84    xmloff/source/transform/StyleOASISTContext \
85    xmloff/source/transform/StyleOOoTContext \
86    xmloff/source/transform/TransformerActions \
87    xmloff/source/transform/TransformerBase \
88    xmloff/source/transform/TransformerContext \
89    xmloff/source/transform/TransformerTokenMap \
90    xmloff/source/transform/XMLFilterRegistration \
91))
92
93# vim: set noet ts=4 sw=4:
94