| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 1 | # -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*- |
| 2 | # |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 3 | # |
| Michael Meeks | 72e5d0c | 2013-04-24 17:14:03 +0100 | [diff] [blame] | 4 | # This file is part of the LibreOffice project. |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 5 | # |
| Michael Meeks | 72e5d0c | 2013-04-24 17:14:03 +0100 | [diff] [blame] | 6 | # This Source Code Form is subject to the terms of the Mozilla Public |
| 7 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 8 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 9 | # |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 10 | |
| 11 | $(eval $(call gb_Library_Library,cppu)) |
| 12 | |
| 13 | $(eval $(call gb_Library_set_soversion_script,cppu,3,$(SRCDIR)/cppu/util/cppu.map)) |
| 14 | |
| Stephan Bergmann | a66bb33 | 2013-02-25 11:08:29 +0100 | [diff] [blame] | 15 | $(eval $(call gb_Library_use_udk_api,cppu)) |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 16 | |
| Matúš Kukan | d899f97 | 2011-12-18 04:56:57 +0100 | [diff] [blame] | 17 | $(eval $(call gb_Library_add_defs,cppu,\ |
| 18 | -DCPPU_DLLIMPLEMENTATION \ |
| 19 | )) |
| 20 | |
| Michael Stahl | a53586f | 2013-01-26 21:19:13 +0100 | [diff] [blame] | 21 | $(eval $(call gb_Library_use_external,cppu,boost_headers)) |
| 22 | |
| Michael Stahl | c923f7d | 2012-04-07 23:22:08 +0200 | [diff] [blame] | 23 | $(eval $(call gb_Library_use_libraries,cppu,\ |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 24 | sal \ |
| Stephan Bergmann | 2fa2660 | 2012-05-23 09:42:37 +0200 | [diff] [blame] | 25 | salhelper \ |
| Michael Stahl | 2e677c3 | 2012-09-26 23:45:28 +0200 | [diff] [blame] | 26 | $(gb_UWINAPI) \ |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 27 | )) |
| 28 | |
| Matúš Kukan | 051fdda | 2011-12-17 14:55:08 +0100 | [diff] [blame] | 29 | $(eval $(call gb_Library_add_cobjects,cppu,\ |
| 30 | cppu/source/uno/EnvDcp \ |
| 31 | )) |
| 32 | |
| 33 | $(eval $(call gb_Library_add_exception_objects,cppu,\ |
| 34 | cppu/source/cppu/cppu_opt \ |
| 35 | cppu/source/threadpool/current \ |
| 36 | cppu/source/threadpool/jobqueue \ |
| 37 | cppu/source/threadpool/thread \ |
| 38 | cppu/source/threadpool/threadident \ |
| 39 | cppu/source/threadpool/threadpool \ |
| 40 | cppu/source/typelib/static_types \ |
| 41 | cppu/source/typelib/typelib \ |
| 42 | cppu/source/uno/any \ |
| 43 | cppu/source/uno/cascade_mapping \ |
| 44 | cppu/source/uno/data \ |
| 45 | cppu/source/uno/EnvStack \ |
| 46 | cppu/source/uno/env_subst \ |
| 47 | cppu/source/uno/IdentityMapping \ |
| 48 | cppu/source/uno/lbenv \ |
| 49 | cppu/source/uno/lbmap \ |
| 50 | cppu/source/uno/loadmodule \ |
| 51 | cppu/source/uno/sequence \ |
| 52 | )) |
| 53 | |
| 54 | # vim: set noet sw=4 ts=4: |