1*9d72048cSdamjan#************************************************************** 2*9d72048cSdamjan# 3*9d72048cSdamjan# Licensed to the Apache Software Foundation (ASF) under one 4*9d72048cSdamjan# or more contributor license agreements. See the NOTICE file 5*9d72048cSdamjan# distributed with this work for additional information 6*9d72048cSdamjan# regarding copyright ownership. The ASF licenses this file 7*9d72048cSdamjan# to you under the Apache License, Version 2.0 (the 8*9d72048cSdamjan# "License"); you may not use this file except in compliance 9*9d72048cSdamjan# with the License. You may obtain a copy of the License at 10*9d72048cSdamjan# 11*9d72048cSdamjan# http://www.apache.org/licenses/LICENSE-2.0 12*9d72048cSdamjan# 13*9d72048cSdamjan# Unless required by applicable law or agreed to in writing, 14*9d72048cSdamjan# software distributed under the License is distributed on an 15*9d72048cSdamjan# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*9d72048cSdamjan# KIND, either express or implied. See the License for the 17*9d72048cSdamjan# specific language governing permissions and limitations 18*9d72048cSdamjan# under the License. 19*9d72048cSdamjan# 20*9d72048cSdamjan#************************************************************** 21*9d72048cSdamjan 22*9d72048cSdamjan 23*9d72048cSdamjan 24*9d72048cSdamjan$(eval $(call gb_Library_Library,ctl)) 25*9d72048cSdamjan 26*9d72048cSdamjan$(eval $(call gb_Library_set_componentfile,ctl,UnoControls/util/ctl)) 27*9d72048cSdamjan 28*9d72048cSdamjan$(eval $(call gb_Library_set_include,ctl,\ 29*9d72048cSdamjan $$(INCLUDE) \ 30*9d72048cSdamjan -I$(SRCDIR)/UnoControls/inc \ 31*9d72048cSdamjan -I$(SRCDIR)/UnoControls/source/inc \ 32*9d72048cSdamjan)) 33*9d72048cSdamjan 34*9d72048cSdamjan$(eval $(call gb_Library_add_api,ctl,\ 35*9d72048cSdamjan offapi \ 36*9d72048cSdamjan udkapi \ 37*9d72048cSdamjan)) 38*9d72048cSdamjan 39*9d72048cSdamjan$(eval $(call gb_Library_add_linked_libs,ctl,\ 40*9d72048cSdamjan cppuhelper \ 41*9d72048cSdamjan cppu \ 42*9d72048cSdamjan sal \ 43*9d72048cSdamjan stl \ 44*9d72048cSdamjan tl \ 45*9d72048cSdamjan $(gb_STDLIBS) \ 46*9d72048cSdamjan)) 47*9d72048cSdamjan 48*9d72048cSdamjan 49*9d72048cSdamjan$(eval $(call gb_Library_add_exception_objects,ctl,\ 50*9d72048cSdamjan UnoControls/source/base/multiplexer \ 51*9d72048cSdamjan UnoControls/source/base/basecontrol \ 52*9d72048cSdamjan UnoControls/source/base/basecontainercontrol \ 53*9d72048cSdamjan UnoControls/source/base/registercontrols \ 54*9d72048cSdamjan UnoControls/source/controls/progressbar \ 55*9d72048cSdamjan UnoControls/source/controls/framecontrol \ 56*9d72048cSdamjan UnoControls/source/controls/progressmonitor \ 57*9d72048cSdamjan UnoControls/source/controls/OConnectionPointHelper \ 58*9d72048cSdamjan UnoControls/source/controls/OConnectionPointContainerHelper \ 59*9d72048cSdamjan UnoControls/source/controls/statusindicator \ 60*9d72048cSdamjan)) 61*9d72048cSdamjan 62*9d72048cSdamjan# vim: set noet sw=4 ts=4: 63