summaryrefslogtreecommitdiff
path: root/connectivity/Library_calc.mk
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2011-12-22 16:59:41 -0500
committerDavid Tardon <dtardon@redhat.com>2012-05-29 07:24:30 +0200
commit1e24aeae05715179be64b17d54d12e75ea13a3b2 (patch)
tree5d143a5712d14eb62494cb28855a286fdf93b1bc /connectivity/Library_calc.mk
parent6440284921fb75f8914e80a2c51cdcf475eae278 (diff)
connectivity: convert calc to gbuild
Diffstat (limited to 'connectivity/Library_calc.mk')
-rw-r--r--connectivity/Library_calc.mk72
1 files changed, 72 insertions, 0 deletions
diff --git a/connectivity/Library_calc.mk b/connectivity/Library_calc.mk
new file mode 100644
index 000000000000..3fa6baa067ca
--- /dev/null
+++ b/connectivity/Library_calc.mk
@@ -0,0 +1,72 @@
+# -*- 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,calc))
+
+$(eval $(call gb_Library_add_package_headers,calc,connectivity_inc))
+
+$(eval $(call gb_Library_set_componentfile,calc,connectivity/source/drivers/calc/calc))
+
+$(eval $(call gb_Library_add_api,calc,\
+ offapi \
+ udkapi \
+))
+
+$(eval $(call gb_Library_set_include,calc,\
+ $$(INCLUDE) \
+ -I$(SRCDIR)/connectivity/source/inc \
+))
+
+$(eval $(call gb_Library_add_linked_libs,calc,\
+ cppu \
+ cppuhelper \
+ svl \
+ tl \
+ utl \
+ sal \
+ salhelper \
+ dbtools \
+ file \
+ comphelper \
+ $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,calc,\
+ connectivity/source/drivers/calc/CResultSet \
+ connectivity/source/drivers/calc/CStatement \
+ connectivity/source/drivers/calc/CPreparedStatement \
+ connectivity/source/drivers/calc/CDatabaseMetaData \
+ connectivity/source/drivers/calc/CCatalog \
+ connectivity/source/drivers/calc/CColumns \
+ connectivity/source/drivers/calc/CTable \
+ connectivity/source/drivers/calc/CTables \
+ connectivity/source/drivers/calc/CConnection \
+ connectivity/source/drivers/calc/Cservices \
+ connectivity/source/drivers/calc/CDriver \
+))
+
+# vim: set noet sw=4 ts=4: