office-gobmx/Library_merged.mk

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1,013 B
Makefile
Raw Normal View History

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2011-08-24 08:44:40 -05:00
#
#
# This file is part of the LibreOffice project.
2011-08-24 08:44:40 -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))
# gb_MERGEDLIBS is defined in solenv/gbuild/extensions/pre_MergedLibsList.mk
$(eval $(call gb_Library_use_library_objects,merged,\
$(gb_MERGEDLIBS) \
))
$(eval $(call gb_Library_use_libraries,merged,\
2011-08-24 08:44:40 -05:00
cppu \
cppuhelper \
i18nlangtag \
$(if $(ENABLE_JAVA), \
jvmaccess \
jvmfwk) \
2011-08-24 08:44:40 -05:00
sal \
salhelper \
xmlreader \
2012-01-06 03:48:43 -06:00
))
2011-08-24 08:44:40 -05:00
ifeq ($(OS),WNT)
# prevent warning spamming
$(eval $(call gb_Library_add_ldflags,merged,\
/ignore:4049 \
/ignore:4217 \
))
# cursors
$(eval $(call gb_Library_add_nativeres,merged,vcl/salsrc))
endif
ifeq ($(OS),MACOSX)
$(eval $(call gb_Library_use_libraries,merged,\
AppleRemote \
))
2011-08-24 08:44:40 -05:00
endif
# vim: set noet sw=4 ts=4: