2012-02-29 04:39:38 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2012-02-29 04:39:38 -06: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/.
|
2012-02-29 04:39:38 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,emboleobj))
|
|
|
|
|
2012-05-09 16:15:42 -05:00
|
|
|
$(eval $(call gb_Library_set_componentfile,emboleobj,embeddedobj/source/msole/emboleobj$(if $(filter WNT,$(OS)),.windows)))
|
2012-02-29 04:39:38 -06:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,emboleobj,\
|
|
|
|
-I$(SRCDIR)/embeddedobj/source/inc \
|
|
|
|
$$(INCLUDE) \
|
|
|
|
))
|
|
|
|
|
2013-01-26 14:19:13 -06:00
|
|
|
$(eval $(call gb_Library_use_external,emboleobj,boost_headers))
|
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,emboleobj))
|
2012-02-29 04:39:38 -06:00
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,emboleobj,\
|
2012-02-29 04:39:38 -06:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
tl \
|
|
|
|
utl \
|
2012-09-26 16:45:28 -05:00
|
|
|
$(gb_UWINAPI) \
|
2012-02-29 04:39:38 -06:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,emboleobj,\
|
|
|
|
embeddedobj/source/msole/closepreventer \
|
|
|
|
embeddedobj/source/msole/oleembed \
|
|
|
|
embeddedobj/source/msole/olemisc \
|
|
|
|
embeddedobj/source/msole/olepersist \
|
|
|
|
embeddedobj/source/msole/oleregister \
|
|
|
|
embeddedobj/source/msole/olevisual \
|
|
|
|
embeddedobj/source/msole/ownview \
|
|
|
|
embeddedobj/source/msole/xolefactory \
|
|
|
|
))
|
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,emboleobj,\
|
2012-02-29 04:39:38 -06:00
|
|
|
embobj \
|
2012-09-28 08:31:46 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_system_win32_libs,emboleobj,\
|
2012-02-29 04:39:38 -06:00
|
|
|
gdi32 \
|
|
|
|
ole32 \
|
|
|
|
oleaut32 \
|
|
|
|
uuid \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,emboleobj,\
|
|
|
|
embeddedobj/source/msole/advisesink \
|
|
|
|
embeddedobj/source/msole/graphconvert \
|
|
|
|
embeddedobj/source/msole/olecomponent \
|
|
|
|
embeddedobj/source/msole/olewrapclient \
|
|
|
|
embeddedobj/source/msole/xdialogcreator \
|
|
|
|
))
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|