2011-09-15 07:01:27 -05:00
|
|
|
#***************************************************************
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#***************************************************************
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,svgfilter))
|
|
|
|
|
2011-09-15 07:01:35 -05:00
|
|
|
$(eval $(call gb_Library_add_package_headers,svgfilter,filter_generated))
|
|
|
|
|
2011-09-15 07:01:27 -05:00
|
|
|
$(eval $(call gb_Library_set_componentfile,svgfilter,filter/source/svg/svgfilter))
|
|
|
|
|
2011-09-15 07:01:35 -05:00
|
|
|
$(eval $(call gb_Library_add_defs,svgfilter,\
|
|
|
|
-DUSE_MODERN_SPIRIT \
|
|
|
|
))
|
|
|
|
|
2011-09-15 07:01:27 -05:00
|
|
|
$(eval $(call gb_Library_add_api,svgfilter,\
|
|
|
|
udkapi \
|
|
|
|
offapi \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,svgfilter,\
|
|
|
|
$$(INCLUDE) \
|
2011-09-15 07:01:35 -05:00
|
|
|
-I$(WORKDIR)/CustomTarget/filter/source/svg \
|
2011-09-15 07:01:27 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_linked_libs,svgfilter,\
|
|
|
|
svxcore \
|
|
|
|
editeng \
|
|
|
|
xo \
|
|
|
|
svt \
|
|
|
|
vcl \
|
2011-09-15 07:01:34 -05:00
|
|
|
svl \
|
2011-09-15 07:01:27 -05:00
|
|
|
utl \
|
|
|
|
tl \
|
#i108468#: clean up xmluconv code duplication, part 1:
move convertNumber64 from SvXMLUnitConverter to sax::converter.
remove duplicate methods from SvXMLUnitConverter:
convertBool, convertPercent, convertColor, convertNumber, convertDouble,
indexOfComma, encodeBase64, decodeBase64, decodeBase64SomeChars,
clearUndefinedChars
2011-10-11 07:19:00 -05:00
|
|
|
sax \
|
2011-09-15 07:01:27 -05:00
|
|
|
comphelper \
|
|
|
|
basegfx \
|
|
|
|
cppuhelper \
|
|
|
|
cppu \
|
|
|
|
sal \
|
|
|
|
$(gb_STDLIBS) \
|
|
|
|
))
|
|
|
|
|
2011-09-15 07:01:37 -05:00
|
|
|
$(eval $(call gb_Library_use_externals,svgfilter,libxml2))
|
2011-09-15 07:01:27 -05:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,svgfilter,\
|
2011-09-15 07:01:35 -05:00
|
|
|
filter/source/svg/b2dellipse \
|
2011-09-15 07:01:27 -05:00
|
|
|
filter/source/svg/impsvgdialog \
|
2011-09-15 07:01:35 -05:00
|
|
|
filter/source/svg/parserfragments \
|
2011-09-15 07:01:27 -05:00
|
|
|
filter/source/svg/svgdialog \
|
|
|
|
filter/source/svg/svgexport \
|
|
|
|
filter/source/svg/svgfilter \
|
|
|
|
filter/source/svg/svgfontexport \
|
|
|
|
filter/source/svg/svgimport \
|
2011-09-15 07:01:35 -05:00
|
|
|
filter/source/svg/svgreader \
|
|
|
|
filter/source/svg/svgwriter \
|
|
|
|
filter/source/svg/tokenmap \
|
|
|
|
filter/source/svg/units \
|
2011-09-15 07:01:27 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|