summaryrefslogtreecommitdiff
path: root/sc/Library_scqahelper.mk
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-08 18:08:30 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-08 22:00:56 -0400
commiteef53622798e2e2f81f28ee5e1c82de0d48c149c (patch)
treeaf43aac0945df7f0840e390415b3897ab8b8f6c5 /sc/Library_scqahelper.mk
parent93ab5bc4daed5197a815275cf78fcc562bda4d5b (diff)
Create a new library to store shared qa code for sc.
Change-Id: I38aa1461d05e3dee096e69b7cd95e2ddfccc9594
Diffstat (limited to 'sc/Library_scqahelper.mk')
-rw-r--r--sc/Library_scqahelper.mk48
1 files changed, 48 insertions, 0 deletions
diff --git a/sc/Library_scqahelper.mk b/sc/Library_scqahelper.mk
new file mode 100644
index 000000000000..94ba7c6ead6b
--- /dev/null
+++ b/sc/Library_scqahelper.mk
@@ -0,0 +1,48 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_Library_Library,scqahelper))
+
+$(eval $(call gb_Library_set_include,scqahelper,\
+ -I$(SRCDIR)/sc/inc \
+ -I$(SRCDIR)/sc/source/ui/inc \
+ $$(INCLUDE) \
+))
+
+$(eval $(call gb_Library_use_externals,scqahelper, \
+ boost_headers \
+ mdds_headers \
+ orcus \
+ orcus-parser \
+ cppunit \
+))
+
+$(eval $(call gb_Library_use_sdk_api,scqahelper))
+
+$(eval $(call gb_Library_use_libraries,scqahelper,\
+ comphelper \
+ cppu \
+ cppuhelper \
+ sal \
+ sfx \
+ sot \
+ svl \
+ svt \
+ tl \
+ utl \
+ sc \
+ ucbhelper \
+ $(gb_UWINAPI) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,scqahelper,\
+ sc/qa/unit/helper/qahelper \
+))
+
+# vim: set noet sw=4 ts=4: