| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 1 | # |
| Michael Meeks | d037b81 | 2026-03-26 15:06:16 +0000 | [diff] [blame] | 2 | # This file is part of the Collabora Office project. |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 3 | # |
| 4 | # This Source Code Form is subject to the terms of the Mozilla Public |
| 5 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 6 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 7 | # |
| 8 | # This file incorporates work covered by the following license notice: |
| 9 | # |
| 10 | # Licensed to the Apache Software Foundation (ASF) under one or more |
| 11 | # contributor license agreements. See the NOTICE file distributed |
| 12 | # with this work for additional information regarding copyright |
| 13 | # ownership. The ASF licenses this file to you under the Apache |
| 14 | # License, Version 2.0 (the "License"); you may not use this file |
| 15 | # except in compliance with the License. You may obtain a copy of |
| 16 | # the License at http://www.apache.org/licenses/LICENSE-2.0 . |
| 17 | # |
| 18 | |
| 19 | $(eval $(call gb_Library_Library,emfio)) |
| 20 | |
| Stephan Bergmann | db3a61c | 2021-12-09 10:15:05 +0100 | [diff] [blame] | 21 | $(eval $(call gb_Library_set_componentfile,emfio,emfio/emfio,services)) |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 22 | |
| 23 | $(eval $(call gb_Library_set_include,emfio,\ |
| 24 | $$(INCLUDE) \ |
| 25 | -I$(SRCDIR)/emfio/inc \ |
| 26 | )) |
| 27 | |
| Markus Mohrhard | 29cdfa3 | 2017-07-17 02:53:08 +0200 | [diff] [blame] | 28 | $(eval $(call gb_Library_add_defs,emfio,\ |
| 29 | -DEMFIO_DLLIMPLEMENTATION \ |
| 30 | )) |
| 31 | |
| Armin Le Grand | c7470f5 | 2017-06-15 16:35:31 +0200 | [diff] [blame] | 32 | $(eval $(call gb_Library_use_custom_headers,emfio,\ |
| 33 | officecfg/registry \ |
| 34 | )) |
| 35 | |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 36 | $(eval $(call gb_Library_use_external,emfio,boost_headers)) |
| 37 | |
| Luboš Luňák | 42af04b | 2019-06-22 12:34:48 +0200 | [diff] [blame] | 38 | $(eval $(call gb_Library_set_precompiled_header,emfio,emfio/inc/pch/precompiled_emfio)) |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 39 | |
| 40 | $(eval $(call gb_Library_use_sdk_api,emfio)) |
| 41 | |
| 42 | $(eval $(call gb_Library_use_libraries,emfio,\ |
| 43 | basegfx \ |
| Tomaž Vajngerl | 7bd62c0 | 2020-03-07 14:33:43 +0100 | [diff] [blame] | 44 | drawinglayercore \ |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 45 | drawinglayer \ |
| 46 | cppu \ |
| 47 | cppuhelper \ |
| 48 | sal \ |
| Armin Le Grand | c7470f5 | 2017-06-15 16:35:31 +0200 | [diff] [blame] | 49 | comphelper \ |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 50 | tl \ |
| Noel Grandin | 5dd762d | 2018-04-12 09:53:27 +0200 | [diff] [blame] | 51 | salhelper \ |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 52 | vcl \ |
| 53 | svt \ |
| Armin Le Grand | 600a2aa | 2017-06-12 19:31:10 +0200 | [diff] [blame] | 54 | utl \ |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 55 | )) |
| 56 | |
| 57 | $(eval $(call gb_Library_add_exception_objects,emfio,\ |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 58 | emfio/source/emfuno/xemfparser \ |
| Armin Le Grand | c7470f5 | 2017-06-15 16:35:31 +0200 | [diff] [blame] | 59 | emfio/source/reader/mtftools \ |
| 60 | emfio/source/reader/wmfreader \ |
| 61 | emfio/source/reader/emfreader \ |
| Armin Le Grand | 83535a2 | 2017-06-09 19:55:17 +0200 | [diff] [blame] | 62 | )) |
| 63 | |
| 64 | # vim: set noet sw=4 ts=4: |