b3c8859cd2
This reverts commit 1126515226
.
Reason for revert: it only took one run after merging the patch to see it
still hangs...
Change-Id: I9235004d0568462b112da7f23bc615f3647f4755
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94677
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
39 lines
875 B
Makefile
39 lines
875 B
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_Executable_Executable,cppunittester))
|
|
|
|
$(eval $(call gb_Executable_set_include,cppunittester,\
|
|
$$(INCLUDE) \
|
|
-I$(SRCDIR)/sal/inc \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_use_libraries,cppunittester,\
|
|
sal \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_use_externals,cppunittester,\
|
|
boost_headers \
|
|
cppunit \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,cppunittester,\
|
|
sal/cppunittester/cppunittester \
|
|
))
|
|
|
|
ifeq ($(COM),MSC)
|
|
|
|
$(eval $(call gb_Executable_add_ldflags,cppunittester,\
|
|
/STACK:10000000 \
|
|
))
|
|
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|