xref: /trunk/main/chart2/Library_chartmodel.mk (revision 8cabe4bf769e51211ca422b8da03830b796ec88a)
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,chartmodel))
25
26$(eval $(call gb_Library_add_precompiled_header,chartmodel,$(SRCDIR)/chart2/inc/pch/precompiled_chartmodel))
27
28$(eval $(call gb_Library_set_componentfile,chartmodel,chart2/source/model/chartmodel))
29
30$(eval $(call gb_Library_set_include,chartmodel,\
31    $$(INCLUDE) \
32    -I$(SRCDIR)/chart2/inc \
33    -I$(SRCDIR)/chart2/inc/pch \
34    -I$(SRCDIR)/chart2/source/inc \
35    -I$(SRCDIR)/chart2/source/model/inc \
36    -I$(OUTDIR)/inc \
37))
38
39$(eval $(call gb_Library_add_api,chartmodel, \
40        udkapi \
41    offapi \
42))
43
44$(eval $(call gb_Library_add_linked_libs,chartmodel,\
45    charttools \
46    comphelper \
47    cppu \
48    cppuhelper \
49    fwe \
50    sal \
51    svl \
52    svt \
53    ucbhelper \
54    utl \
55    vcl \
56    stl \
57    $(gb_STDLIBS) \
58))
59
60$(eval $(call gb_Library_add_exception_objects,chartmodel,\
61    chart2/source/model/filter/XMLFilter \
62    chart2/source/model/main/Axis \
63    chart2/source/model/main/GridProperties \
64    chart2/source/model/main/BaseCoordinateSystem \
65    chart2/source/model/main/CartesianCoordinateSystem \
66    chart2/source/model/main/ChartModel \
67    chart2/source/model/main/ChartModel_Persistence \
68    chart2/source/model/main/DataPoint \
69    chart2/source/model/main/DataPointProperties \
70    chart2/source/model/main/DataSeries \
71    chart2/source/model/main/Diagram \
72    chart2/source/model/main/DataSeriesProperties \
73    chart2/source/model/main/FormattedString \
74    chart2/source/model/main/Legend \
75    chart2/source/model/main/PageBackground \
76    chart2/source/model/main/PolarCoordinateSystem \
77    chart2/source/model/main/StockBar \
78    chart2/source/model/main/Title \
79    chart2/source/model/main/Wall \
80    chart2/source/model/main/UndoManager \
81    chart2/source/model/main/_serviceregistration_model \
82    chart2/source/model/template/AreaChartType \
83    chart2/source/model/template/AreaChartTypeTemplate \
84    chart2/source/model/template/BarChartType \
85    chart2/source/model/template/BarChartTypeTemplate \
86    chart2/source/model/template/CandleStickChartType \
87    chart2/source/model/template/ChartType \
88    chart2/source/model/template/ChartTypeManager \
89    chart2/source/model/template/ChartTypeTemplate \
90    chart2/source/model/template/ColumnChartType \
91    chart2/source/model/template/ColumnLineChartTypeTemplate \
92    chart2/source/model/template/DataInterpreter \
93    chart2/source/model/template/FilledNetChartType \
94    chart2/source/model/template/LineChartType \
95    chart2/source/model/template/LineChartTypeTemplate \
96    chart2/source/model/template/NetChartType \
97    chart2/source/model/template/NetChartTypeTemplate \
98    chart2/source/model/template/PieChartType \
99    chart2/source/model/template/PieChartTypeTemplate \
100    chart2/source/model/template/ScatterChartType \
101    chart2/source/model/template/ScatterChartTypeTemplate \
102    chart2/source/model/template/BubbleChartType \
103    chart2/source/model/template/BubbleChartTypeTemplate \
104    chart2/source/model/template/BubbleDataInterpreter \
105    chart2/source/model/template/StockChartTypeTemplate \
106    chart2/source/model/template/StockDataInterpreter \
107    chart2/source/model/template/XYDataInterpreter \
108    chart2/source/model/template/ColumnLineDataInterpreter \
109    chart2/source/model/template/_serviceregistration_charttypes \
110))
111
112# vim: set noet sw=4 ts=4:
113