1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
$(eval $(call gb_StaticLibrary_StaticLibrary,basegfx_s))
$(eval $(call gb_StaticLibrary_add_package_headers,basegfx_s,basegfx_inc))
$(eval $(call gb_StaticLibrary_add_precompiled_header,basegfx_s,$(SRCDIR)/basegfx/inc/pch/precompiled_basegfx))
$(eval $(call gb_StaticLibrary_set_include,basegfx_s,\
-I$(realpath $(SRCDIR)/basegfx/inc) \
-I$(realpath $(SRCDIR)/basegfx/source/inc) \
$$(INCLUDE) \
-I$(realpath $(SRCDIR)/basegfx/inc/pch) \
-I$(OUTDIR)/inc \
))
$(eval $(call gb_StaticLibrary_add_api,basegfx_s,\
offapi \
udkapi \
))
# the whole library is a hack
# we only build it to prevent the pdfimporter shared lib from linking to the basegfx shared lib
# this means that all code of this static library will end in a dll
# thus the _DLL define must be set to avoid link problems with stlport symbols
# the BASEGFX_STATICLIBRARY define will expand all BASEGFX_DLLPRIVATE/PUBLIC macros to nothing
$(eval $(call gb_StaticLibrary_add_defs,basegfx_s,\
-DBASEGFX_STATICLIBRARY \
-D_DLL \
))
# as we have to build all sources a second time, we must copy them to the workdir and build from there
$(WORKDIR)/CustomTarget/basegfx/source/%.cxx : $(SRCDIR)/basegfx/source/%.cxx
mkdir -p $(dir $@) && \
cp $< $@
# copied sources are generated cxx sources
$(eval $(call gb_StaticLibrary_add_generated_exception_objects,basegfx_s,\
CustomTarget/basegfx/source/tools/liangbarsky \
CustomTarget/basegfx/source/tools/debugplotter \
CustomTarget/basegfx/source/tools/canvastools \
CustomTarget/basegfx/source/tools/gradienttools \
CustomTarget/basegfx/source/tools/keystoplerp \
CustomTarget/basegfx/source/tools/unopolypolygon \
CustomTarget/basegfx/source/tools/tools \
CustomTarget/basegfx/source/tools/b2dclipstate \
CustomTarget/basegfx/source/numeric/ftools \
CustomTarget/basegfx/source/tuple/b3ituple \
CustomTarget/basegfx/source/tuple/b3dtuple \
CustomTarget/basegfx/source/tuple/b2ituple \
CustomTarget/basegfx/source/tuple/b2dtuple \
CustomTarget/basegfx/source/tuple/b3i64tuple \
CustomTarget/basegfx/source/tuple/b2i64tuple \
CustomTarget/basegfx/source/range/b1drange \
CustomTarget/basegfx/source/range/b2dpolyrange \
CustomTarget/basegfx/source/range/b2xrange \
CustomTarget/basegfx/source/range/b3drange \
CustomTarget/basegfx/source/range/b2drangeclipper \
CustomTarget/basegfx/source/range/b2drange \
CustomTarget/basegfx/source/vector/b3ivector \
CustomTarget/basegfx/source/vector/b2ivector \
CustomTarget/basegfx/source/vector/b2dvector \
CustomTarget/basegfx/source/vector/b3dvector \
CustomTarget/basegfx/source/polygon/b3dpolygon \
CustomTarget/basegfx/source/polygon/b2dtrapezoid \
CustomTarget/basegfx/source/polygon/b3dpolygontools \
CustomTarget/basegfx/source/polygon/b2dlinegeometry \
CustomTarget/basegfx/source/polygon/b3dpolypolygontools \
CustomTarget/basegfx/source/polygon/b3dpolygonclipper \
CustomTarget/basegfx/source/polygon/b2dpolygonclipper \
CustomTarget/basegfx/source/polygon/b2dpolypolygoncutter \
CustomTarget/basegfx/source/polygon/b2dpolypolygonrasterconverter \
CustomTarget/basegfx/source/polygon/b2dpolygon \
CustomTarget/basegfx/source/polygon/b2dpolygontriangulator \
CustomTarget/basegfx/source/polygon/b2dpolypolygon \
CustomTarget/basegfx/source/polygon/b3dpolypolygon \
CustomTarget/basegfx/source/polygon/b2dsvgpolypolygon \
CustomTarget/basegfx/source/polygon/b2dpolygoncutandtouch \
CustomTarget/basegfx/source/polygon/b2dpolypolygontools \
CustomTarget/basegfx/source/polygon/b2dpolygontools \
CustomTarget/basegfx/source/pixel/bpixel \
CustomTarget/basegfx/source/matrix/b2dhommatrixtools \
CustomTarget/basegfx/source/matrix/b3dhommatrix \
CustomTarget/basegfx/source/matrix/b2dhommatrix \
CustomTarget/basegfx/source/point/b3ipoint \
CustomTarget/basegfx/source/point/b2dpoint \
CustomTarget/basegfx/source/point/b3dpoint \
CustomTarget/basegfx/source/point/b2dhompoint \
CustomTarget/basegfx/source/point/b2ipoint \
CustomTarget/basegfx/source/curve/b2dbeziertools \
CustomTarget/basegfx/source/curve/b2dcubicbezier \
CustomTarget/basegfx/source/curve/b2dquadraticbezier \
CustomTarget/basegfx/source/color/bcolormodifier \
CustomTarget/basegfx/source/color/bcolor \
CustomTarget/basegfx/source/color/bcolortools \
CustomTarget/basegfx/source/raster/bpixelraster \
CustomTarget/basegfx/source/raster/bzpixelraster \
CustomTarget/basegfx/source/raster/rasterconvert3d \
))
# vim: set noet sw=4 ts=4:
|