17871dc3eSAndrew Rist#************************************************************** 27871dc3eSAndrew Rist# 37871dc3eSAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 47871dc3eSAndrew Rist# or more contributor license agreements. See the NOTICE file 57871dc3eSAndrew Rist# distributed with this work for additional information 67871dc3eSAndrew Rist# regarding copyright ownership. The ASF licenses this file 77871dc3eSAndrew Rist# to you under the Apache License, Version 2.0 (the 87871dc3eSAndrew Rist# "License"); you may not use this file except in compliance 97871dc3eSAndrew Rist# with the License. You may obtain a copy of the License at 107871dc3eSAndrew Rist# 117871dc3eSAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 127871dc3eSAndrew Rist# 137871dc3eSAndrew Rist# Unless required by applicable law or agreed to in writing, 147871dc3eSAndrew Rist# software distributed under the License is distributed on an 157871dc3eSAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 167871dc3eSAndrew Rist# KIND, either express or implied. See the License for the 177871dc3eSAndrew Rist# specific language governing permissions and limitations 187871dc3eSAndrew Rist# under the License. 197871dc3eSAndrew Rist# 207871dc3eSAndrew Rist#************************************************************** 217871dc3eSAndrew Rist 227871dc3eSAndrew Rist 23cdf0e10cSrcweir 24*fb02ff42Sdamjan$(eval $(call gb_Library_Library,simplecm)) 25cdf0e10cSrcweir 26*fb02ff42Sdamjan$(eval $(call gb_Library_add_precompiled_header,simplecm,$(SRCDIR)/automation/inc/pch/precompiled_automation)) 27cdf0e10cSrcweir 28*fb02ff42Sdamjan$(eval $(call gb_Library_add_package_headers,simplecm,automation_inc)) 29cdf0e10cSrcweir 30*fb02ff42Sdamjan$(eval $(call gb_Library_set_include,simplecm,\ 31*fb02ff42Sdamjan $$(INCLUDE) \ 32*fb02ff42Sdamjan -I$(SRCDIR)/automation/inc \ 33*fb02ff42Sdamjan -I$(SRCDIR)/automation/inc/pch \ 34*fb02ff42Sdamjan -I$(SRCDIR)/automation/source/inc \ 35*fb02ff42Sdamjan)) 36cdf0e10cSrcweir 37*fb02ff42Sdamjan$(eval $(call gb_Library_add_defs,simplecm,\ 38*fb02ff42Sdamjan -DAUTOMATION_DLLIMPLEMENTATION \ 39*fb02ff42Sdamjan)) 40cdf0e10cSrcweir 41*fb02ff42Sdamjan$(eval $(call gb_Library_add_api,simplecm,\ 42*fb02ff42Sdamjan offapi \ 43*fb02ff42Sdamjan udkapi \ 44*fb02ff42Sdamjan)) 45cdf0e10cSrcweir 46*fb02ff42Sdamjan$(eval $(call gb_Library_add_linked_libs,simplecm,\ 47*fb02ff42Sdamjan sal \ 48*fb02ff42Sdamjan tl \ 49*fb02ff42Sdamjan vos3 \ 50*fb02ff42Sdamjan $(gb_STDLIBS) \ 51*fb02ff42Sdamjan)) 52cdf0e10cSrcweir 53*fb02ff42Sdamjan$(eval $(call gb_Library_add_noexception_objects,simplecm,\ 54*fb02ff42Sdamjan automation/source/simplecm/tcpio \ 55*fb02ff42Sdamjan automation/source/simplecm/packethandler \ 56*fb02ff42Sdamjan automation/source/simplecm/simplecm \ 57*fb02ff42Sdamjan)) 58*fb02ff42Sdamjan 59*fb02ff42Sdamjan 60*fb02ff42Sdamjan# vim: set noet sw=4 ts=4: 61