1############################################################### 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at 10# 11# http://www.apache.org/licenses/LICENSE-2.0 12# 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. 19# 20############################################################### 21 22 23 24$(eval $(call gb_Library_Library,nullcanvas)) 25 26$(eval $(call gb_Library_add_api,nullcanvas,\ 27 udkapi \ 28 offapi \ 29)) 30 31$(eval $(call gb_Library_set_include,nullcanvas,\ 32 $$(INCLUDE) \ 33 -I$(SRCDIR)/canvas/inc \ 34 -I$(SRCDIR)/canvas/inc/pch \ 35)) 36 37ifneq ($(strip $(VERBOSE)$(verbose)),) 38$(eval $(call gb_Library_add_defs,nullcanvas,\ 39 -DVERBOSE \ 40)) 41endif 42 43$(eval $(call gb_Library_add_linked_libs,nullcanvas,\ 44 cppu \ 45 sal \ 46 comphelper \ 47 cppuhelper \ 48 stl \ 49 basegfx \ 50 canvastools \ 51 vcl \ 52 $(gb_STDLIBS) \ 53)) 54 55$(eval $(call gb_Library_add_exception_objects,nullcanvas,\ 56 canvas/source/null/null_canvasbitmap \ 57 canvas/source/null/null_canvascustomsprite \ 58 canvas/source/null/null_canvasfont \ 59 canvas/source/null/null_canvashelper \ 60 canvas/source/null/null_devicehelper \ 61 canvas/source/null/null_spritecanvas \ 62 canvas/source/null/null_spritecanvashelper \ 63 canvas/source/null/null_spritehelper \ 64 canvas/source/null/null_textlayout \ 65)) 66 67# vim: set noet sw=4 ts=4: 68