lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / solenv / gbuild / platform / windows.mk
bloba8ba5b1d1717d7f10c344b149d1805a51dc35fa7
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
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/.
10 # to block heavy exception handling that try to acquire the solarmutex
11 export LO_LEAN_EXCEPTION=1
13 # to avoid flashing windows during tests
14 export VCL_HIDE_WINDOWS=1
16 gb_LICENSE := license.txt
17 gb_README = readme_$(1).txt
19 gb_Helper_get_rcfile = $(1).ini
21 gb_Helper_LIBRARY_PATH_VAR := PATH
23 gb_MKTEMP := mktemp --tmpdir=$(gb_TMPDIR) gbuild.XXXXXX
25 # define _WIN32_WINNT and WINVER will be derived from it in sdkddkver.h
26 # current baseline is Windows 7 (NT 6.1)
27 # for _WIN32_IE, if _WIN32_WINNT >= 0x0600 the derived value from
28 # sdkddkver.h is sufficient
29 gb_WIN_VERSION_DEFS := \
30 -D_WIN32_WINNT=0x0601 \
31 -DWIN32 \
32 -DWNT \
34 gb_OSDEFS := \
35 $(gb_WIN_VERSION_DEFS) \
36 -DNOMINMAX \
37 $(LFS_CFLAGS) \
39 gb_Executable_LAYER := \
40 $(foreach exe,$(gb_Executable_UREBIN),$(exe):UREBIN) \
41 $(foreach exe,$(gb_Executable_SDK),$(exe):SDKBIN) \
42 $(foreach exe,$(gb_Executable_OOO),$(exe):OOO) \
43 $(foreach exe,$(gb_Executable_NONE),$(exe):NONE) \
45 # empty to avoid --warn-undefined-functions
46 gb_Library__set_soversion_script_platform =
48 # vim:set noexpandtab: