26e7cb5ef4
...in favor of gb_LinkTarget_add_generated_exception_objects. The former would
have needed any flags to be passed in explicitly (but no call sites did), so
e.g. StaticLibrary_graphite didn't have any debug information (when building
with --enable-debug). I guess there is no downside to having C++ exception
support enabled in these places, and using _add_generated_cxxobjects instead was
likely an oversight in the first place (at least in the case of
external/graphite/StaticLibrary_graphite.mk, it was that way ever since
1ceb47d96d
"graphite: convert to gbuild", but for
no apparent reason).
Change-Id: I9986a6c5ec30a521095dbe5315e5ca649741a790
21 lines
638 B
Makefile
21 lines
638 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_StaticLibrary_StaticLibrary,mythes))
|
|
|
|
$(eval $(call gb_StaticLibrary_use_unpacked,mythes,mythes))
|
|
|
|
$(eval $(call gb_StaticLibrary_set_warnings_not_errors,mythes))
|
|
|
|
$(eval $(call gb_StaticLibrary_add_generated_exception_objects,mythes,\
|
|
UnpackedTarball/mythes/mythes \
|
|
))
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|