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,xof)) 25 26$(eval $(call gb_Library_set_componentfile,xof,xmloff/source/transform/xof)) 27 28$(eval $(call gb_Library_set_include,xof,\ 29 -I$(SRCDIR)/xmloff/inc/pch \ 30 -I$(SRCDIR)/xmloff/inc \ 31 -I$(SRCDIR)/xmloff/source/inc \ 32 $$(INCLUDE) \ 33)) 34 35$(eval $(call gb_Library_add_api,xof,\ 36 udkapi \ 37 offapi \ 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 sw=4 ts=4: 94