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,analysis)) 25 26$(eval $(call gb_Library_set_componentfile,analysis,scaddins/source/analysis/analysis)) 27 28$(eval $(call gb_Library_set_private_api,analysis,$(OUTDIR)/bin/types.rdb,\ 29 $(SRCDIR)/scaddins/source/analysis/analysisadd.idl,\ 30 com.sun.star.sheet.addin.XAnalysis \ 31 com.sun.star.lang.XComponent \ 32 com.sun.star.lang.XMultiServiceFactory \ 33 com.sun.star.lang.XSingleComponentFactory \ 34 com.sun.star.lang.XSingleServiceFactory \ 35 com.sun.star.uno.TypeClass \ 36 com.sun.star.uno.XInterface \ 37 com.sun.star.registry.XImplementationRegistration \ 38 com.sun.star.sheet.LocalizedName \ 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 com.sun.star.util.XNumberFormatter \ 49 com.sun.star.util.XNumberFormatTypes \ 50 com.sun.star.sheet.NoConvergenceException \ 51)) 52 53$(eval $(call gb_Library_add_linked_libs,analysis,\ 54 cppu \ 55 cppuhelper \ 56 sal \ 57 stl \ 58 tl \ 59 $(gb_STDLIBS) \ 60)) 61 62$(eval $(call gb_Library_add_exception_objects,analysis,\ 63 scaddins/source/analysis/analysis \ 64 scaddins/source/analysis/financial \ 65 scaddins/source/analysis/analysishelper \ 66 scaddins/source/analysis/bessel \ 67)) 68 69# vim: set noet sw=4 ts=4: 70 71