2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-08-23 15:03:09 +02:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-08-23 15:03:09 +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-08-23 15:03:09 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,cppuhelper))
|
|
|
|
|
2013-09-17 22:24:10 +02:00
|
|
|
$(eval $(call gb_Library_set_soversion_script,cppuhelper,$(SRCDIR)/cppuhelper/source/gcc3.map))
|
2011-08-23 15:03:09 +02:00
|
|
|
|
2012-04-07 01:27:55 +02:00
|
|
|
$(eval $(call gb_Library_use_internal_comprehensive_api,cppuhelper,\
|
|
|
|
cppuhelper \
|
|
|
|
udkapi \
|
2011-08-23 15:03:09 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_defs,cppuhelper,\
|
|
|
|
-DCPPUHELPER_DLLIMPLEMENTATION \
|
|
|
|
))
|
|
|
|
|
2013-01-26 21:19:13 +01:00
|
|
|
$(eval $(call gb_Library_use_external,cppuhelper,boost_headers))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,cppuhelper,\
|
2011-08-23 15:03:09 +02:00
|
|
|
cppu \
|
2012-04-20 22:46:42 +02:00
|
|
|
reg \
|
2011-08-23 15:03:09 +02:00
|
|
|
sal \
|
|
|
|
salhelper \
|
2013-02-25 15:31:05 +01:00
|
|
|
unoidl \
|
2012-04-20 22:46:42 +02:00
|
|
|
xmlreader \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-08-23 15:03:09 +02:00
|
|
|
))
|
|
|
|
|
2012-10-10 13:50:20 +02:00
|
|
|
$(eval $(call gb_Library_use_static_libraries,cppuhelper,\
|
|
|
|
findsofficepath \
|
2011-08-23 15:03:09 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,cppuhelper,\
|
|
|
|
cppuhelper/source/access_control \
|
|
|
|
cppuhelper/source/bootstrap \
|
2012-12-06 09:48:07 +00:00
|
|
|
cppuhelper/source/compat \
|
2011-08-23 15:03:09 +02:00
|
|
|
cppuhelper/source/component_context \
|
|
|
|
cppuhelper/source/component \
|
2012-04-20 22:46:42 +02:00
|
|
|
cppuhelper/source/defaultbootstrap \
|
2011-08-23 15:03:09 +02:00
|
|
|
cppuhelper/source/exc_thrower \
|
|
|
|
cppuhelper/source/factory \
|
|
|
|
cppuhelper/source/implbase \
|
|
|
|
cppuhelper/source/implbase_ex \
|
|
|
|
cppuhelper/source/implementationentry \
|
|
|
|
cppuhelper/source/interfacecontainer \
|
|
|
|
cppuhelper/source/macro_expander \
|
2012-04-20 22:46:42 +02:00
|
|
|
cppuhelper/source/paths \
|
2011-08-23 15:03:09 +02:00
|
|
|
cppuhelper/source/propertysetmixin \
|
|
|
|
cppuhelper/source/propshlp \
|
2013-01-15 16:28:30 +01:00
|
|
|
cppuhelper/source/servicemanager \
|
2011-08-23 15:03:09 +02:00
|
|
|
cppuhelper/source/shlib \
|
2012-09-14 19:27:00 +02:00
|
|
|
cppuhelper/source/supportsservice \
|
2011-08-23 15:03:09 +02:00
|
|
|
cppuhelper/source/tdmgr \
|
2013-04-17 16:43:13 +02:00
|
|
|
cppuhelper/source/typemanager \
|
2011-08-23 15:03:09 +02:00
|
|
|
cppuhelper/source/typeprovider \
|
|
|
|
cppuhelper/source/unourl \
|
|
|
|
cppuhelper/source/weak \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|