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,evoab2)) 25 26$(eval $(call gb_Library_add_precompiled_header,evoab2,$(SRCDIR)/connectivity/inc/pch/precompiled_evoab2)) 27 28$(eval $(call gb_Library_set_componentfile,evoab2,connectivity/source/drivers/evoab2/evoab)) 29 30$(eval $(call gb_Library_set_include,evoab2,\ 31 $$(INCLUDE) \ 32 -I$(SRCDIR)/connectivity/inc \ 33 -I$(SRCDIR)/connectivity/inc/pch \ 34 -I$(SRCDIR)/connectivity/source/inc \ 35 -I$(SRCDIR)/connectivity/source/drivers/evoab2 \ 36 -I$(WORKDIR)/CustomTarget/connectivity/source/parse \ 37 $(filter -I%,$(GTK_CFLAGS)) \ 38 $(filter -I%,$(GOBJECT_CFLAGS)) \ 39)) 40 41$(eval $(call gb_Library_add_cxxflags,evoab2,\ 42 $(filter-out -I%,$(GTK_CFLAGS)) \ 43 $(filter-out -I%,$(GOBJECT_CFLAGS)) \ 44)) 45 46$(eval $(call gb_Library_add_api,evoab2,\ 47 offapi \ 48 udkapi \ 49)) 50 51$(eval $(call gb_Library_add_linked_libs,evoab2,\ 52 comphelper \ 53 cppuhelper \ 54 cppu \ 55 file \ 56 dbtools \ 57 sal \ 58 stl \ 59 svl \ 60 tl \ 61 ucbhelper \ 62 utl \ 63 vos3 \ 64 $(gb_STDLIBS) \ 65)) 66 67$(eval $(call gb_Library_add_libs,evoab2,\ 68 $(GTK_LIBS) \ 69 $(GOBJECT_LIBS) \ 70)) 71 72$(eval $(call gb_Library_add_exception_objects,evoab2,\ 73 connectivity/source/drivers/evoab2/NCatalog \ 74 connectivity/source/drivers/evoab2/NColumns \ 75 connectivity/source/drivers/evoab2/NConnection \ 76 connectivity/source/drivers/evoab2/NDatabaseMetaData \ 77 connectivity/source/drivers/evoab2/NDriver \ 78 connectivity/source/drivers/evoab2/NPreparedStatement \ 79 connectivity/source/drivers/evoab2/NResultSet \ 80 connectivity/source/drivers/evoab2/NResultSetMetaData \ 81 connectivity/source/drivers/evoab2/NStatement \ 82 connectivity/source/drivers/evoab2/NTable \ 83 connectivity/source/drivers/evoab2/NTables \ 84 connectivity/source/drivers/evoab2/NServices \ 85 connectivity/source/drivers/evoab2/EApi \ 86 connectivity/source/drivers/evoab2/NDebug \ 87)) 88 89# vim: set noet sw=4 ts=4: 90