tdf115103: find data source if sDataSource/sCommand are empty
[LibreOffice.git] / canvas / Library_canvastools.mk
bloba87e53fd1043d733ab584b3d31024115f29fca00
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 # This file incorporates work covered by the following license notice:
11 # Licensed to the Apache Software Foundation (ASF) under one or more
12 # contributor license agreements. See the NOTICE file distributed
13 # with this work for additional information regarding copyright
14 # ownership. The ASF licenses this file to you under the Apache
15 # License, Version 2.0 (the "License"); you may not use this file
16 # except in compliance with the License. You may obtain a copy of
17 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 $(eval $(call gb_Library_Library,canvastools))
22 $(eval $(call gb_Library_use_sdk_api,canvastools))
24 $(eval $(call gb_Library_add_defs,canvastools,\
25 -DCANVASTOOLS_DLLIMPLEMENTATION \
28 $(eval $(call gb_Library_use_external,canvastools,boost_headers))
30 $(eval $(call gb_Library_use_libraries,canvastools,\
31 basegfx \
32 comphelper \
33 cppu \
34 cppuhelper \
35 sal \
36 tk \
37 tl \
38 vcl \
41 $(eval $(call gb_Library_add_exception_objects,canvastools,\
42 canvas/source/tools/cachedprimitivebase \
43 canvas/source/tools/canvascustomspritehelper \
44 canvas/source/tools/canvastools \
45 canvas/source/tools/elapsedtime \
46 canvas/source/tools/page \
47 canvas/source/tools/pagemanager \
48 canvas/source/tools/parametricpolypolygon \
49 canvas/source/tools/propertysethelper \
50 canvas/source/tools/spriteredrawmanager \
51 canvas/source/tools/surface \
52 canvas/source/tools/surfaceproxy \
53 canvas/source/tools/surfaceproxymanager \
54 canvas/source/tools/verifyinput \
57 ifeq ($(strip $(ENABLE_AGG)),YES)
58 $(eval $(call gb_Library_add_exception_objects,canvastools,\
59 canvas/source/tools/bitmap \
60 canvas/source/tools/image \
62 $(eval $(call gb_Library_use_libraries,canvastools,\
63 agg \
65 ifneq ($(strip $(AGG_VERSION)),)
66 $(eval $(call gb_Library_add_defs,canvastools,\
67 -DAGG_VERSION=$(AGG_VERSION) \
69 endif
70 endif
72 # vim: set noet sw=4 ts=4: