1*a25fe050SDamjan Jovanovic#**************************************************************
2*a25fe050SDamjan Jovanovic#
3*a25fe050SDamjan Jovanovic#  Licensed to the Apache Software Foundation (ASF) under one
4*a25fe050SDamjan Jovanovic#  or more contributor license agreements.  See the NOTICE file
5*a25fe050SDamjan Jovanovic#  distributed with this work for additional information
6*a25fe050SDamjan Jovanovic#  regarding copyright ownership.  The ASF licenses this file
7*a25fe050SDamjan Jovanovic#  to you under the Apache License, Version 2.0 (the
8*a25fe050SDamjan Jovanovic#  "License"); you may not use this file except in compliance
9*a25fe050SDamjan Jovanovic#  with the License.  You may obtain a copy of the License at
10*a25fe050SDamjan Jovanovic#
11*a25fe050SDamjan Jovanovic#    http://www.apache.org/licenses/LICENSE-2.0
12*a25fe050SDamjan Jovanovic#
13*a25fe050SDamjan Jovanovic#  Unless required by applicable law or agreed to in writing,
14*a25fe050SDamjan Jovanovic#  software distributed under the License is distributed on an
15*a25fe050SDamjan Jovanovic#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*a25fe050SDamjan Jovanovic#  KIND, either express or implied.  See the License for the
17*a25fe050SDamjan Jovanovic#  specific language governing permissions and limitations
18*a25fe050SDamjan Jovanovic#  under the License.
19*a25fe050SDamjan Jovanovic#
20*a25fe050SDamjan Jovanovic#**************************************************************
21*a25fe050SDamjan Jovanovic
22*a25fe050SDamjan Jovanovic
23*a25fe050SDamjan Jovanovic$(eval $(call gb_GoogleTest_GoogleTest,tools_pathutils))
24*a25fe050SDamjan Jovanovic
25*a25fe050SDamjan Jovanovic$(eval $(call gb_GoogleTest_add_exception_objects,tools_pathutils, \
26*a25fe050SDamjan Jovanovic	tools/qa/test_pathutils \
27*a25fe050SDamjan Jovanovic))
28*a25fe050SDamjan Jovanovic
29*a25fe050SDamjan Jovanovic$(eval $(call gb_GoogleTest_add_linked_libs,tools_pathutils, \
30*a25fe050SDamjan Jovanovic    stl \
31*a25fe050SDamjan Jovanovic    tl \
32*a25fe050SDamjan Jovanovic    $(gb_STDLIBS) \
33*a25fe050SDamjan Jovanovic))
34*a25fe050SDamjan Jovanovic
35*a25fe050SDamjan Jovanovic
36*a25fe050SDamjan Jovanovic$(eval $(call gb_GoogleTest_add_linked_static_libs,tools_pathutils, \
37*a25fe050SDamjan Jovanovic    ooopathutils \
38*a25fe050SDamjan Jovanovic))
39*a25fe050SDamjan Jovanovic
40*a25fe050SDamjan Jovanovic$(eval $(call gb_GoogleTest_set_include,tools_pathutils,\
41*a25fe050SDamjan Jovanovic	$$(INCLUDE) \
42*a25fe050SDamjan Jovanovic	-I$(SRCDIR)/inc \
43*a25fe050SDamjan Jovanovic	-I$(SRCDIR)/tools/inc/pch \
44*a25fe050SDamjan Jovanovic))
45*a25fe050SDamjan Jovanovic
46*a25fe050SDamjan Jovanovic# vim: set noet sw=4 ts=4:
47