2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-02-25 16:51:24 +01:00
|
|
|
#
|
2013-05-16 21:56:04 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-02-25 16:51:24 +01:00
|
|
|
#
|
2013-05-16 21:56:04 +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-02-25 16:51:24 +01:00
|
|
|
#
|
2013-05-16 21:56:04 +01:00
|
|
|
# This file incorporates work covered by the following license notice:
|
2011-02-25 16:51:24 +01:00
|
|
|
#
|
2013-05-16 21:56:04 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
|
|
# with this work for additional information regarding copyright
|
|
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
2011-02-25 16:51:24 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,gdipluscanvas))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,gdipluscanvas,canvas/source/directx/gdipluscanvas))
|
|
|
|
|
2013-01-26 21:19:13 +01:00
|
|
|
$(eval $(call gb_Library_use_external,gdipluscanvas,boost_headers))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,gdipluscanvas))
|
2011-02-25 16:51:24 +01:00
|
|
|
|
2012-01-04 18:38:59 +01:00
|
|
|
# clear NOMINMAX because GdiplusTypes.h uses those macros :(
|
2011-04-13 16:11:41 +00:00
|
|
|
$(eval $(call gb_Library_add_defs,gdipluscanvas,\
|
2012-01-04 18:38:59 +01:00
|
|
|
-UNOMINMAX \
|
2011-02-25 16:51:24 +01:00
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,gdipluscanvas,\
|
2011-02-25 16:51:24 +01:00
|
|
|
cppu \
|
|
|
|
tk \
|
|
|
|
sal \
|
|
|
|
comphelper \
|
|
|
|
cppuhelper \
|
|
|
|
basegfx \
|
|
|
|
canvastools \
|
|
|
|
vcl \
|
|
|
|
tl \
|
|
|
|
utl \
|
2013-04-05 18:40:39 +02:00
|
|
|
i18nlangtag \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-02-25 16:51:24 +01:00
|
|
|
))
|
|
|
|
|
2012-09-28 15:31:46 +02:00
|
|
|
$(eval $(call gb_Library_use_system_win32_libs,gdipluscanvas,\
|
2011-02-25 16:51:24 +01:00
|
|
|
gdi32 \
|
|
|
|
gdiplus \
|
|
|
|
))
|
2012-03-14 21:08:03 +01:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_static_libraries,gdipluscanvas,\
|
2012-03-14 21:08:03 +01:00
|
|
|
directxcanvas \
|
|
|
|
))
|
2011-02-25 16:51:24 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,gdipluscanvas,\
|
|
|
|
canvas/source/directx/dx_canvas \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|