diff options
author | David Tardon <dtardon@redhat.com> | 2012-05-23 13:58:31 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-05-29 07:24:52 +0200 |
commit | aa99f076047dac84ec80d588bfcbe4c0e6db34f1 (patch) | |
tree | 30d401a7880e0b850b1d4f5a9a09f60ffc8615a3 /connectivity/Library_tdeabdrv1.mk | |
parent | b4e3d59c00b5c1c1d84f111bf9be40a8eea23327 (diff) |
connectivity: convert tdeab to gbuild
Change-Id: I6653686ef251bdf64610ff9bab7e27e39acee799
Diffstat (limited to 'connectivity/Library_tdeabdrv1.mk')
-rw-r--r-- | connectivity/Library_tdeabdrv1.mk | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/connectivity/Library_tdeabdrv1.mk b/connectivity/Library_tdeabdrv1.mk new file mode 100644 index 000000000000..1f3a8ea80f9f --- /dev/null +++ b/connectivity/Library_tdeabdrv1.mk @@ -0,0 +1,66 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# Copyright (C) 2011 Peter Foley <pefoley2@verizon.net> (initial developer) +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +$(eval $(call gb_Library_Library,tdeabdrv1)) + +$(eval $(call gb_Library_use_api,tdeabdrv1,\ + offapi \ + udkapi \ +)) + +$(eval $(call gb_Library_add_libs,tdeabdrv1,\ + -lkabc \ +)) + +$(eval $(call gb_Library_use_libraries,tdeabdrv1,\ + cppu \ + cppuhelper \ + sal \ + salhelper \ + dbtools \ + comphelper \ + $(gb_STDLIBS) \ +)) + +$(eval $(call gb_Library_add_exception_objects,tdeabdrv1,\ + connectivity/source/drivers/kab/KColumns \ + connectivity/source/drivers/kab/KTable \ + connectivity/source/drivers/kab/KTables \ + connectivity/source/drivers/kab/KCatalog \ + connectivity/source/drivers/kab/KResultSet \ + connectivity/source/drivers/kab/KStatement \ + connectivity/source/drivers/kab/KPreparedStatement \ + connectivity/source/drivers/kab/KDatabaseMetaData \ + connectivity/source/drivers/kab/KConnection \ + connectivity/source/drivers/kab/KResultSetMetaData \ + connectivity/source/drivers/kab/kcondition \ + connectivity/source/drivers/kab/korder \ + connectivity/source/drivers/kab/kfields \ + connectivity/source/drivers/kab/KDEInit \ +)) + +# vim: set noet sw=4 ts=4: |