| Takeshi Abe | b2bd33e | 2011-08-10 02:12:48 +0900 | [diff] [blame] | 1 | # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 2 | # |
| Michael Meeks | 44cfc7c | 2012-10-09 12:22:23 +0100 | [diff] [blame] | 3 | # This file is part of the LibreOffice project. |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 4 | # |
| Michael Meeks | 44cfc7c | 2012-10-09 12:22:23 +0100 | [diff] [blame] | 5 | # This Source Code Form is subject to the terms of the Mozilla Public |
| 6 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 7 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 8 | # |
| Michael Meeks | 44cfc7c | 2012-10-09 12:22:23 +0100 | [diff] [blame] | 9 | # This file incorporates work covered by the following license notice: |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 10 | # |
| Michael Meeks | 44cfc7c | 2012-10-09 12:22:23 +0100 | [diff] [blame] | 11 | # Licensed to the Apache Software Foundation (ASF) under one or more |
| 12 | # contributor license agreements. See the NOTICE file distributed |
| 13 | # with this work for additional information regarding copyright |
| 14 | # ownership. The ASF licenses this file to you under the Apache |
| 15 | # License, Version 2.0 (the "License"); you may not use this file |
| 16 | # except in compliance with the License. You may obtain a copy of |
| 17 | # the License at http://www.apache.org/licenses/LICENSE-2.0 . |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 18 | # |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 19 | |
| Mathias Bauer | 77de797 | 2011-02-25 17:49:36 +0100 | [diff] [blame] | 20 | $(eval $(call gb_Module_Module,cppcanvas)) |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 21 | |
| Mathias Bauer | 77de797 | 2011-02-25 17:49:36 +0100 | [diff] [blame] | 22 | $(eval $(call gb_Module_add_targets,cppcanvas,\ |
| 23 | Library_cppcanvas \ |
| Radek Doulik | 5587081 | 2011-07-27 10:06:10 +0200 | [diff] [blame] | 24 | Library_mtfrenderer \ |
| Mathias Bauer | 77de797 | 2011-02-25 17:49:36 +0100 | [diff] [blame] | 25 | )) |
| Rüdiger Timm | f46cd33 | 2006-10-30 08:13:37 +0000 | [diff] [blame] | 26 | |
| Michael Meeks | eb5e3e3 | 2013-06-11 14:14:31 +0100 | [diff] [blame] | 27 | # FIXME: should generalize these ... |
| 28 | ifeq ($(ENABLE_CAIRO_CANVAS),TRUE) |
| 29 | $(eval $(call gb_Module_add_check_targets,cppcanvas,\ |
| 30 | CppunitTest_cppcanvas_test \ |
| 31 | )) |
| Miklos Vajna | c3d90aa | 2014-04-10 11:56:47 +0200 | [diff] [blame] | 32 | |
| Miklos Vajna | bcd2437 | 2014-04-10 14:01:03 +0200 | [diff] [blame] | 33 | ifneq ($(DISPLAY),) |
| Miklos Vajna | c3d90aa | 2014-04-10 11:56:47 +0200 | [diff] [blame] | 34 | $(eval $(call gb_Module_add_slowcheck_targets,cppcanvas,\ |
| 35 | CppunitTest_cppcanvas_emfplus \ |
| 36 | )) |
| Michael Meeks | eb5e3e3 | 2013-06-11 14:14:31 +0100 | [diff] [blame] | 37 | endif |
| Miklos Vajna | bcd2437 | 2014-04-10 14:01:03 +0200 | [diff] [blame] | 38 | endif |
| Michael Meeks | eb5e3e3 | 2013-06-11 14:14:31 +0100 | [diff] [blame] | 39 | |
| Mathias Bauer | 77de797 | 2011-02-25 17:49:36 +0100 | [diff] [blame] | 40 | # vim: set noet sw=4 ts=4: |