2012-11-26 02:47:05 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-09-15 07:01:27 -05:00
|
|
|
#
|
2012-06-21 06:04:30 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
# This file incorporates work covered by the following license notice:
|
|
|
|
#
|
|
|
|
# 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 .
|
2011-09-15 07:01:27 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,svgfilter))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_custom_headers,svgfilter,filter/source/svg))
|
2011-09-15 07:01:35 -05:00
|
|
|
|
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 \
|
2012-04-27 05:34:45 -05:00
|
|
|
-DFILTER_DLLIMPLEMENTATION \
|
2011-09-15 07:01:35 -05:00
|
|
|
))
|
|
|
|
|
2012-04-14 08:35:12 -05:00
|
|
|
$(eval $(call gb_Library_set_include,svgfilter,\
|
|
|
|
$$(INCLUDE) \
|
|
|
|
-I$(SRCDIR)/filter/inc \
|
|
|
|
))
|
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,svgfilter))
|
2011-09-15 07:01:27 -05:00
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,svgfilter,\
|
2011-09-15 07:01:27 -05:00
|
|
|
svxcore \
|
|
|
|
editeng \
|
|
|
|
xo \
|
|
|
|
svt \
|
|
|
|
vcl \
|
2011-09-15 07:01:34 -05:00
|
|
|
svl \
|
2011-09-15 07:01:27 -05:00
|
|
|
utl \
|
|
|
|
tl \
|
2012-11-22 05:26:52 -06:00
|
|
|
i18nisolang1 \
|
#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 \
|
2012-09-26 16:45:28 -05:00
|
|
|
$(gb_UWINAPI) \
|
2011-09-15 07:01:27 -05:00
|
|
|
))
|
|
|
|
|
2013-01-26 14:19:13 -06:00
|
|
|
$(eval $(call gb_Library_use_externals,svgfilter,\
|
|
|
|
boost_headers \
|
|
|
|
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/svgfilter \
|
|
|
|
filter/source/svg/svgimport \
|
2011-09-15 07:01:35 -05:00
|
|
|
filter/source/svg/svgreader \
|
|
|
|
filter/source/svg/tokenmap \
|
|
|
|
filter/source/svg/units \
|
2012-11-26 02:41:07 -06:00
|
|
|
$(if $(filter EXPORT,$(BUILD_TYPE)), \
|
|
|
|
filter/source/svg/svgexport \
|
|
|
|
filter/source/svg/svgfontexport \
|
|
|
|
filter/source/svg/svgwriter) \
|
2011-09-15 07:01:27 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|