2012-07-29 11:49:31 +02:00
|
|
|
# -*- 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,cli_uno))
|
|
|
|
|
2012-10-21 19:08:03 -04:00
|
|
|
$(eval $(call gb_Library_add_ldflags,cli_uno,\
|
|
|
|
-ignore:4248 \
|
|
|
|
))
|
|
|
|
|
2012-08-06 19:59:13 +02:00
|
|
|
$(eval $(call gb_Library_use_udk_api,cli_uno))
|
|
|
|
|
2012-07-29 11:49:31 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,cli_uno,\
|
|
|
|
cppu \
|
2012-09-28 15:31:46 +02:00
|
|
|
sal \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_use_system_win32_libs,cli_uno,\
|
2012-07-29 11:49:31 +02:00
|
|
|
mscoree \
|
2013-04-18 20:27:05 +02:00
|
|
|
msvcmrt \
|
2012-07-29 11:49:31 +02:00
|
|
|
))
|
|
|
|
|
2017-02-20 16:28:06 +01:00
|
|
|
$(eval $(call gb_Library_add_cxxclrobjects,cli_uno,\
|
2012-07-29 11:49:31 +02:00
|
|
|
cli_ure/source/uno_bridge/cli_bridge \
|
|
|
|
cli_ure/source/uno_bridge/cli_data \
|
|
|
|
cli_ure/source/uno_bridge/cli_environment \
|
|
|
|
cli_ure/source/uno_bridge/cli_proxy \
|
|
|
|
cli_ure/source/uno_bridge/cli_uno \
|
|
|
|
))
|
|
|
|
|
2013-06-07 23:22:16 +02:00
|
|
|
$(call gb_Library_get_headers_target,cli_uno) :| \
|
2012-09-23 08:06:09 +02:00
|
|
|
$(call gb_CliLibrary_get_target,cli_ure) \
|
|
|
|
$(call gb_CliUnoApi_get_target,cli_uretypes)
|
|
|
|
|
2012-07-29 11:49:31 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|