office-gobmx/embeddedobj/Library_embobj.mk
Zolnai Tamás 9991b50ccc Make opengl chart window always active
Fortunately there is a special ole object group with
the MS_EMBED_ACTIVATEWHENVISIBLE flag which define this
behaviour.
Problem is that both Aspect and EmbedMisc are MS specific
enums so we can't use them directly for non-MS objects. But we
can handle opengl charts the same as this ole object group.

Change-Id: I49abeffce319cbb775709a72ba198a1f76b65374
2014-08-29 17:40:27 +02:00

50 lines
1.4 KiB
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_Library_Library,embobj))
$(eval $(call gb_Library_set_componentfile,embobj,embeddedobj/util/embobj))
$(eval $(call gb_Library_set_include,embobj,\
-I$(SRCDIR)/embeddedobj/source/inc \
$$(INCLUDE) \
))
$(eval $(call gb_Library_use_external,embobj,boost_headers))
$(eval $(call gb_Library_use_sdk_api,embobj))
$(eval $(call gb_Library_use_libraries,embobj,\
comphelper \
cppu \
cppuhelper \
sal \
svt \
vcl \
tl \
$(gb_UWINAPI) \
))
$(eval $(call gb_Library_add_exception_objects,embobj,\
embeddedobj/source/commonembedding/embedobj \
embeddedobj/source/commonembedding/inplaceobj \
embeddedobj/source/commonembedding/miscobj \
embeddedobj/source/commonembedding/persistence \
embeddedobj/source/commonembedding/register \
embeddedobj/source/commonembedding/specialobject \
embeddedobj/source/commonembedding/visobj \
embeddedobj/source/commonembedding/xfactory \
embeddedobj/source/general/docholder \
embeddedobj/source/general/dummyobject \
embeddedobj/source/general/intercept \
embeddedobj/source/general/xcreator \
))
# vim: set noet sw=4 ts=4: