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