2011-12-19 15:09:48 -06:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
2011-12-17 18:28:13 -06:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-17 18:28:13 -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/.
|
2011-12-17 18:28:13 -06:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2013-04-24 09:46:01 -05:00
|
|
|
$(eval $(call gb_WinResTarget_WinResTarget,so_activex))
|
2011-12-17 18:28:13 -06:00
|
|
|
|
2013-04-24 09:46:01 -05:00
|
|
|
$(eval $(call gb_WinResTarget_use_custom_headers,so_activex,\
|
2012-04-30 10:09:13 -05:00
|
|
|
extensions/source/activex/idl \
|
|
|
|
))
|
|
|
|
|
2013-01-03 08:36:20 -06:00
|
|
|
ifneq ($(ENABLE_DBGUTIL),TRUE)
|
2013-04-24 09:46:01 -05:00
|
|
|
$(eval $(call gb_WinResTarget_add_defs,so_activex,\
|
2011-12-17 18:28:13 -06:00
|
|
|
-DPRODUCT \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2013-04-24 09:46:01 -05:00
|
|
|
$(eval $(call gb_WinResTarget_set_rcfile,so_activex,extensions/source/activex/so_activex))
|
2011-12-17 18:28:13 -06:00
|
|
|
|
2013-04-24 09:46:01 -05:00
|
|
|
$(eval $(call gb_WinResTarget_add_defs,so_activex,\
|
2011-12-17 18:28:13 -06:00
|
|
|
$$(DEFS) \
|
2013-02-28 16:09:18 -06:00
|
|
|
-DSO_ACTIVEX_TLB=\"$(subst /,\\\\,$(WORKDIR)/CustomTarget/extensions/source/activex/idl/so_activex.tlb\") \
|
2011-12-17 18:28:13 -06:00
|
|
|
))
|
2011-12-19 15:09:48 -06:00
|
|
|
|
2013-01-26 15:19:07 -06:00
|
|
|
# vim:set noet sw=4 ts=4:
|