2014-04-28 09:33:04 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-08-24 08:44:40 -05:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-08-24 08:44:40 -05:00
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# 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/.
|
2011-08-24 08:44:40 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,merged))
|
|
|
|
|
2012-04-07 08:53:35 -05:00
|
|
|
# gb_MERGEDLIBS is defined in solenv/gbuild/extensions/pre_MergedLibsList.mk
|
|
|
|
$(eval $(call gb_Library_use_library_objects,merged,\
|
|
|
|
$(gb_MERGEDLIBS) \
|
|
|
|
))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,merged,\
|
2011-08-24 08:44:40 -05:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2016-10-26 08:20:27 -05:00
|
|
|
i18nlangtag \
|
2013-08-18 16:41:12 -05:00
|
|
|
$(if $(ENABLE_JAVA), \
|
2013-04-11 18:32:42 -05:00
|
|
|
jvmaccess \
|
|
|
|
jvmfwk) \
|
2011-08-24 08:44:40 -05:00
|
|
|
sal \
|
|
|
|
salhelper \
|
2012-02-17 16:15:26 -06:00
|
|
|
xmlreader \
|
2012-01-06 03:48:43 -06:00
|
|
|
))
|
2011-08-24 08:44:40 -05:00
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
2012-09-22 08:42:16 -05:00
|
|
|
# prevent warning spamming
|
|
|
|
$(eval $(call gb_Library_add_ldflags,merged,\
|
|
|
|
/ignore:4049 \
|
|
|
|
/ignore:4217 \
|
|
|
|
))
|
2015-06-25 09:09:35 -05:00
|
|
|
# cursors
|
|
|
|
$(eval $(call gb_Library_add_nativeres,merged,vcl/salsrc))
|
2012-04-07 08:53:35 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(OS),MACOSX)
|
|
|
|
$(eval $(call gb_Library_use_libraries,merged,\
|
2024-12-01 10:08:43 -06:00
|
|
|
$(if $(ENABLE_MACOSX_SANDBOX),,AppleRemote) \
|
2012-09-27 17:54:49 -05:00
|
|
|
))
|
2011-08-24 08:44:40 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|