forked from amazingfate/loongoffice
after... commit 506cab1a01b0481d0831a7a692a26dc5a5b55e91 Author: Caolán McNamara <caolanm@redhat.com> Date: Wed Apr 12 16:14:10 2017 +0100 take the .ui files from $BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR Change-Id: I9cffdc092206c038da32a32a2cfe629e68b5c258 Change-Id: I906d16037cdf0b9203a4120cb1a5e9846a5c7b7f Reviewed-on: https://gerrit.libreoffice.org/36482 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
70 lines
1.8 KiB
Makefile
70 lines
1.8 KiB
Makefile
# -*- 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_CppunitTest_CppunitScreenShot,xmlsecurity_dialogs_test))
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,xmlsecurity_dialogs_test, \
|
|
xmlsecurity/qa/unit/xmlsecurity-dialogs-test \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,xmlsecurity_dialogs_test))
|
|
|
|
$(eval $(call gb_CppunitTest_set_include,desktop_dialogs_test,\
|
|
-I$(SRCDIR)/xmlsecurity/inc \
|
|
$$(INCLUDE) \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,xmlsecurity_dialogs_test, \
|
|
basegfx \
|
|
comphelper \
|
|
cppu \
|
|
cppuhelper \
|
|
drawinglayer \
|
|
editeng \
|
|
i18nlangtag \
|
|
i18nutil \
|
|
msfilter \
|
|
oox \
|
|
sal \
|
|
salhelper \
|
|
sax \
|
|
sfx \
|
|
sot \
|
|
svl \
|
|
svt \
|
|
test \
|
|
tl \
|
|
tk \
|
|
ucbhelper \
|
|
unotest \
|
|
utl \
|
|
vcl \
|
|
xo \
|
|
$(gb_UWINAPI) \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_external,xmlsecurity_dialogs_test,boost_headers))
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,xmlsecurity_dialogs_test))
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,xmlsecurity_dialogs_test))
|
|
$(eval $(call gb_CppunitTest_use_vcl_non_headless_with_windows,xmlsecurity_dialogs_test))
|
|
|
|
$(eval $(call gb_CppunitTest_use_rdb,xmlsecurity_dialogs_test,services))
|
|
|
|
$(eval $(call gb_CppunitTest_use_configuration,xmlsecurity_dialogs_test))
|
|
|
|
$(eval $(call gb_CppunitTest_use_uiconfigs,xmlsecurity_dialogs_test,\
|
|
xmlsec \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|