xref: /trunk/main/ucbhelper/Library_ucbhelper.mk (revision 8c84d0613eeaa348d10c2591df582960e5d98cfe)
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,ucbhelper))
25
26$(eval $(call gb_Library_add_package_headers,ucbhelper,ucbhelper_inc))
27
28$(eval $(call gb_Library_add_precompiled_header,ucbhelper,$(SRCDIR)/ucbhelper/inc/pch/precompiled_ucbhelper))
29
30$(eval $(call gb_Library_add_api,ucbhelper,\
31    udkapi \
32    offapi \
33))
34
35$(eval $(call gb_Library_set_include,ucbhelper,\
36    $$(INCLUDE) \
37    -I$(SRCDIR)/ucbhelper/inc \
38    -I$(SRCDIR)/ucbhelper/inc/pch \
39))
40
41$(eval $(call gb_Library_add_defs,ucbhelper,\
42    -DUCBHELPER_DLLIMPLEMENTATION \
43))
44
45$(eval $(call gb_Library_add_linked_libs,ucbhelper,\
46    stl \
47    sal \
48    cppu \
49    cppuhelper \
50    salhelper \
51    $(gb_STDLIBS) \
52))
53
54$(eval $(call gb_Library_add_exception_objects,ucbhelper,\
55    ucbhelper/source/provider/simpleauthenticationrequest \
56    ucbhelper/source/provider/simpleioerrorrequest \
57    ucbhelper/source/provider/cancelcommandexecution \
58    ucbhelper/source/provider/contenthelper \
59    ucbhelper/source/provider/propertyvalueset \
60    ucbhelper/source/provider/resultset \
61    ucbhelper/source/provider/resultsetmetadata \
62    ucbhelper/source/provider/simplecertificatevalidationrequest \
63    ucbhelper/source/provider/contentidentifier \
64    ucbhelper/source/provider/resultsethelper \
65    ucbhelper/source/provider/simplenameclashresolverequest \
66    ucbhelper/source/provider/simpleinteractionrequest \
67    ucbhelper/source/provider/handleinteractionrequest \
68    ucbhelper/source/provider/registerucb \
69    ucbhelper/source/provider/contentinfo \
70    ucbhelper/source/provider/interactionrequest \
71    ucbhelper/source/provider/commandenvironmentproxy \
72    ucbhelper/source/provider/providerhelper \
73    ucbhelper/source/client/proxydecider \
74    ucbhelper/source/client/content \
75    ucbhelper/source/client/contentbroker \
76    ucbhelper/source/client/commandenvironment \
77    ucbhelper/source/client/activedatastreamer \
78    ucbhelper/source/client/fileidentifierconverter \
79    ucbhelper/source/client/interceptedinteraction \
80    ucbhelper/source/client/activedatasink \
81))
82
83# vim: set noet sw=4 ts=4:
84