summaryrefslogtreecommitdiff
path: root/basebmp/Library_basebmp.mk
blob: 12a2dec1eb3e4eccc5505d3234e2eed376f08786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# 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/.
#

$(eval $(call gb_Library_Library,basebmp))

$(eval $(call gb_Library_use_sdk_api,basebmp))

$(eval $(call gb_Library_use_externals,basebmp,\
	boost_headers \
	vigra_headers \
))

$(eval $(call gb_Library_use_libraries,basebmp,\
    basegfx \
    sal \
	$(gb_UWINAPI) \
))

$(eval $(call gb_Library_add_defs,basebmp,\
	-DBASEBMP_DLLIMPLEMENTATION \
))

# TODO(davido): This is failing only in release mode with:
#
# Compilation of bitmapdevice.cxx is failing in release mode:
# 
# Fatal Error C1128: number of sections exceeded object file
# format limit : compile with /bigobj
#
ifeq ($(COM),MSC)
ifeq ($(CPUNAME),X86_64)
$(eval $(call gb_Library_add_cxxflags,basebmp, \
    -bigobj \
))
endif
endif

$(eval $(call gb_Library_add_exception_objects,basebmp,\
	basebmp/source/bitmapdevice \
	basebmp/source/debug \
	basebmp/source/polypolygonrenderer \
))

# vim: set noet sw=4 ts=4:
'>2013-02-28remove all d.lstMichael Stahl 2013-01-26gbuild: fix silly "expandtabs" in makefile VIM modelinesMichael Stahl 2012-12-30add runtime deps for custom targetsDavid Tardon 2012-08-15gbuild: remove horrible abuses of gb_Jar_use_jars:Michael Stahl 2012-06-26re-base on ALv2 code.Michael Meeks 2012-05-10normalize variable names in gbuild user makefilesMichael Stahl 2012-05-09gbuild: remove gb_Helper_abbreviate_dirs_nativeMatúš Kukan 2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen 2012-04-14unoil: remove generated classes before calling javamakerMichael Stahl 2012-04-09enforce only one possible use of gb_CustomTargetMatúš Kukan 2012-04-08gbuild: "use" vs. "add":Michael Stahl 2012-04-06include variable before it's usedMatúš Kukan 2012-04-06unoil: use CustomTarget makefilesMatúš Kukan 2012-03-23.txt files don't need executable bitsMichael Stahl 2012-03-16unoil: add missing dependencies in custom makefileMichael Stahl 2012-03-10gbuild: remove some more realpathsMatúš Kukan 2012-02-17update makefilesDavid Tardon 2012-02-17merge feature/gbuild_javaDavid Tardon 2012-02-16unoil: fix Windows buildMatus Kukan 2012-02-16add gb_Helper_abbreviate_dirs_nativeMatus Kukan 2012-02-06Added READMEs for modules related to URE, with content from the wikiJosh Heidenreich 2011-12-25fix deps on executablesDavid Tardon 2011-12-25add dependency on packageDavid Tardon 2011-12-24remove old cruftDavid Tardon 2011-12-24gbuildize unoilDavid Tardon