xref: /trunk/main/sot/Library_sot.mk (revision 033ed79537b07af43f0f091b11f5dc308cb4c9ad)
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,sot))
25
26$(eval $(call gb_Library_add_package_headers,sot,sot_inc))
27
28$(eval $(call gb_Library_add_precompiled_header,sot,$(SRCDIR)/sot/inc/pch/precompiled_sot))
29
30$(eval $(call gb_Library_set_componentfile,sot,sot/util/sot))
31
32$(eval $(call gb_Library_set_include,sot,\
33    -I$(SRCDIR)/sot/inc/pch \
34    $$(INCLUDE) \
35))
36
37$(eval $(call gb_Library_add_api,sot,\
38    udkapi \
39    offapi \
40))
41
42$(eval $(call gb_Library_add_defs,sot,\
43    -DSOT_DLLIMPLEMENTATION \
44))
45
46$(eval $(call gb_Library_add_linked_libs,sot,\
47    comphelper \
48    cppu \
49    cppuhelper \
50    sal \
51    tl \
52    ucbhelper \
53    stl \
54    utl \
55    $(gb_STDLIBS) \
56))
57
58$(eval $(call gb_Library_add_exception_objects,sot,\
59    sot/source/unoolestorage/xolesimplestorage \
60    sot/source/unoolestorage/register \
61    sot/source/base/formats \
62    sot/source/base/object \
63    sot/source/base/exchange \
64    sot/source/base/filelist \
65    sot/source/base/factory \
66    sot/source/sdstor/stg \
67    sot/source/sdstor/stgavl \
68    sot/source/sdstor/stgcache \
69    sot/source/sdstor/stgdir \
70    sot/source/sdstor/stgelem \
71    sot/source/sdstor/stgio \
72    sot/source/sdstor/stgole \
73    sot/source/sdstor/stgstrms \
74    sot/source/sdstor/storage \
75    sot/source/sdstor/storinfo \
76    sot/source/sdstor/ucbstorage \
77    sot/source/sdstor/unostorageholder \
78))
79
80# vim: set noet sw=4 ts=4:
81