2013-07-18 11:30:10 +02: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/.
|
|
|
|
#
|
|
|
|
|
2015-11-20 10:59:34 +01:00
|
|
|
$(eval $(call gb_CppunitTest_CppunitTest,shell_zip))
|
2013-07-18 11:30:10 +02:00
|
|
|
|
2015-11-20 10:59:34 +01:00
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,shell_zip, \
|
2013-07-18 12:19:57 +02:00
|
|
|
shell/qa/zip/testzipimpl \
|
2013-07-18 11:30:10 +02:00
|
|
|
shell/qa/zip/ziptest \
|
|
|
|
))
|
|
|
|
|
|
|
|
|
2015-11-20 10:59:34 +01:00
|
|
|
$(eval $(call gb_CppunitTest_set_include,shell_zip,\
|
2013-07-18 11:30:10 +02:00
|
|
|
-I$(SRCDIR)/shell/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
2015-11-20 10:59:34 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_externals,shell_zip,\
|
2013-07-18 11:30:10 +02:00
|
|
|
expat \
|
|
|
|
zlib \
|
|
|
|
))
|
|
|
|
|
2015-11-20 10:59:34 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_system_win32_libs,shell_zip, \
|
2013-07-18 12:48:23 +02:00
|
|
|
ole32 \
|
2013-07-18 11:30:10 +02:00
|
|
|
kernel32 \
|
|
|
|
msvcprt \
|
|
|
|
))
|
|
|
|
|
2015-11-20 10:59:34 +01:00
|
|
|
$(eval $(call gb_CppunitTest_use_static_libraries,shell_zip,\
|
2013-07-18 11:30:10 +02:00
|
|
|
shell_xmlparser \
|
|
|
|
shlxthandler_common \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|