2013-07-08 17:08:30 -05:00
|
|
|
# -*- 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 \
|
|
|
|
cppunit \
|
2014-07-19 06:30:28 -05:00
|
|
|
libxml2 \
|
2013-07-08 17:08:30 -05:00
|
|
|
))
|
|
|
|
|
2014-02-11 08:57:18 -06:00
|
|
|
ifneq ($(SYSTEM_LIBORCUS),)
|
2013-12-17 20:18:46 -06:00
|
|
|
$(eval $(call gb_Library_use_externals,scqahelper,orcus))
|
|
|
|
else
|
|
|
|
$(eval $(call gb_Library_use_externals,scqahelper,orcus-parser))
|
|
|
|
endif
|
|
|
|
|
2019-09-22 15:08:56 -05:00
|
|
|
$(eval $(call gb_Library_use_common_precompiled_header,scqahelper))
|
|
|
|
|
2013-07-09 08:59:24 -05:00
|
|
|
$(eval $(call gb_Library_add_defs,scqahelper,\
|
2013-09-05 16:20:33 -05:00
|
|
|
-DSCQAHELPER_DLLIMPLEMENTATION \
|
2013-07-09 08:59:24 -05:00
|
|
|
))
|
|
|
|
|
2018-03-22 05:46:56 -05:00
|
|
|
$(eval $(call gb_Library_use_api,scqahelper,\
|
|
|
|
udkapi \
|
|
|
|
offapi \
|
|
|
|
oovbaapi \
|
|
|
|
))
|
2013-07-08 17:08:30 -05:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_libraries,scqahelper,\
|
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2015-11-17 11:32:38 -06:00
|
|
|
editeng \
|
2013-07-09 09:54:48 -05:00
|
|
|
for \
|
2013-07-08 17:08:30 -05:00
|
|
|
sal \
|
2013-10-28 16:36:57 -05:00
|
|
|
sc \
|
2013-07-08 17:08:30 -05:00
|
|
|
sfx \
|
|
|
|
sot \
|
|
|
|
svl \
|
|
|
|
svt \
|
2013-07-26 13:55:47 -05:00
|
|
|
svx \
|
2014-10-10 07:00:35 -05:00
|
|
|
svxcore \
|
2013-07-09 09:54:48 -05:00
|
|
|
test \
|
2013-07-08 17:08:30 -05:00
|
|
|
tl \
|
2013-07-09 09:54:48 -05:00
|
|
|
unotest \
|
2013-07-08 17:08:30 -05:00
|
|
|
utl \
|
|
|
|
ucbhelper \
|
2013-07-09 07:23:27 -05:00
|
|
|
unotest \
|
2013-10-28 16:36:57 -05:00
|
|
|
vcl \
|
2013-07-08 17:08:30 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,scqahelper,\
|
|
|
|
sc/qa/unit/helper/qahelper \
|
2014-07-19 06:30:28 -05:00
|
|
|
sc/qa/unit/helper/xpath \
|
2016-11-30 14:01:31 -06:00
|
|
|
sc/qa/unit/functions_test \
|
2013-07-08 17:08:30 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|