xref: /aoo42x/main/scaddins/Library_date.mk (revision 390c74e1)
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,date))
25
26$(eval $(call gb_Library_set_componentfile,date,scaddins/source/datefunc/date))
27
28$(eval $(call gb_Library_set_private_api,date,$(OUTDIR)/bin/types.rdb,\
29	$(SRCDIR)/scaddins/source/datefunc/dateadd.idl,\
30        com.sun.star.sheet.addin.XDateFunctions \
31        com.sun.star.sheet.addin.XMiscFunctions \
32        com.sun.star.lang.XComponent \
33        com.sun.star.lang.XMultiServiceFactory \
34        com.sun.star.lang.XSingleComponentFactory \
35        com.sun.star.lang.XSingleServiceFactory \
36        com.sun.star.uno.TypeClass \
37        com.sun.star.uno.XInterface \
38        com.sun.star.registry.XImplementationRegistration \
39        com.sun.star.sheet.XAddIn \
40        com.sun.star.sheet.XCompatibilityNames \
41        com.sun.star.lang.XServiceName \
42        com.sun.star.lang.XServiceInfo \
43        com.sun.star.lang.XTypeProvider \
44        com.sun.star.uno.XWeak \
45        com.sun.star.uno.XAggregation \
46        com.sun.star.uno.XComponentContext \
47        com.sun.star.util.Date \
48))
49
50$(eval $(call gb_Library_add_linked_libs,date,\
51	cppu \
52	cppuhelper \
53	sal \
54	stl \
55	tl \
56	$(gb_STDLIBS) \
57))
58
59$(eval $(call gb_Library_add_exception_objects,date,\
60	scaddins/source/datefunc/datefunc \
61))
62
63# vim: set noet sw=4 ts=4:
64
65