# $Id: Makefile.kmk 82968 2020-02-04 10:35:17Z vboxsync $ ## @file # Sub-Makefile for the Windows Guest Additions Installer Helper DLL testcases. # # # Copyright (C) 2019-2020 Oracle Corporation # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file is free software; # you can redistribute it and/or modify it under the terms of the GNU # General Public License (GPL) as published by the Free Software # Foundation, in version 2 as it comes in the "COPYING" file of the # VirtualBox OSE distribution. VirtualBox OSE is distributed in the # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. # SUB_DEPTH = ../../../../.. include $(KBUILD_PATH)/subheader.kmk ifdef VBOX_WITH_TESTCASES # # As the testcases use the DLL directly and plugins for NSIS *always* are 32-bit, # we also have to use a 32-bit testcase here. # PROGRAMS.x86 += tstWinAdditionsInstallHelper tstWinAdditionsInstallHelper_TEMPLATE = VBoxGuestR3Exe tstWinAdditionsInstallHelper_SOURCES = tstWinAdditionsInstallHelper.cpp tstWinAdditionsInstallHelper_DEFS = _WIN32_WINNT=0x0400 WIN32_LEAN_AND_MEAN=1 UNICODE _UNICODE endif # VBOX_WITH_TESTCASES include $(FILE_KBUILD_SUB_FOOTER)