2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-09-25 23:38:03 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-09-25 23:38:03 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01: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-09-25 23:38:03 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,binaryurp))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,binaryurp,binaryurp/source/binaryurp))
|
|
|
|
|
2013-03-30 18:27:06 +01:00
|
|
|
$(eval $(call gb_Library_use_udk_api,binaryurp))
|
2011-09-25 23:38:03 +02:00
|
|
|
|
2015-02-16 13:15:31 +00:00
|
|
|
$(eval $(call gb_Library_use_external,binaryurp,boost_headers))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,binaryurp,\
|
2011-09-25 23:38:03 +02:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
salhelper \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,binaryurp,\
|
|
|
|
binaryurp/source/binaryany \
|
|
|
|
binaryurp/source/bridge \
|
|
|
|
binaryurp/source/bridgefactory \
|
|
|
|
binaryurp/source/currentcontext \
|
|
|
|
binaryurp/source/incomingrequest \
|
|
|
|
binaryurp/source/lessoperators \
|
|
|
|
binaryurp/source/marshal \
|
|
|
|
binaryurp/source/outgoingrequests \
|
|
|
|
binaryurp/source/proxy \
|
|
|
|
binaryurp/source/reader \
|
|
|
|
binaryurp/source/unmarshal \
|
|
|
|
binaryurp/source/writer \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|