# $Id: Makefile.kmk 106061 2024-09-16 14:03:52Z vboxsync $ ## @file # Sub-Makefile for the Shared Clipboard Guest/Host testcases. # # # Copyright (C) 2011-2024 Oracle and/or its affiliates. # # This file is part of VirtualBox base platform packages, as # available from https://www.virtualbox.org. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation, in version 3 of the # License. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # SPDX-License-Identifier: GPL-3.0-only # SUB_DEPTH = ../../../../.. include $(KBUILD_PATH)/subheader.kmk if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_SDK) if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) PROGRAMS += tstClipboardGH-X11Smoke tstClipboardGH-X11 TESTING += \ $(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11.run \ $(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11Smoke.run tstClipboardGH-X11_TEMPLATE = VBoxR3TstExe tstClipboardGH-X11_DEFS = VBOX_WITH_HGCM UNIT_TEST TESTCASE tstClipboardGH-X11_SOURCES = \ tstClipboardGH-X11.cpp \ ../clipboard-x11.cpp \ ../clipboard-common.cpp tstClipboardGH-X11_CXXFLAGS += -Wno-array-bounds tstClipboardGH-X11_LIBS = X11 Xt tstClipboardGH-X11_CLEAN = $(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11.run tstClipboardGH-X11Smoke_TEMPLATE = VBoxR3TstExe tstClipboardGH-X11Smoke_DEFS = VBOX_WITH_HGCM SMOKETEST tstClipboardGH-X11Smoke_SOURCES = \ tstClipboardGH-X11Smoke.cpp \ ../clipboard-x11.cpp \ ../clipboard-common.cpp tstClipboardGH-X11Smoke_LIBPATH = $(VBOX_LIBPATH_X11) tstClipboardGH-X11Smoke_LIBS = X11 Xt tstClipboardGH-X11Smoke_CLEAN = $(tstClipboardGH-X11Smoke_0_OUTDIR)/tstClipboardGH-X11Smoke.run $$(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11.run: $$(tstClipboardGH-X11_1_STAGE_TARGET) export VBOX_LOG_DEST=nofile; $(tstClipboardGH-X11_1_STAGE_TARGET) quiet $(QUIET)$(APPEND) -t "$@" "done" $$(tstClipboardGH-X11Smoke_0_OUTDIR)/tstClipboardGH-X11Smoke.run: $$(tstClipboardGH-X11Smoke_1_STAGE_TARGET) export VBOX_LOG_DEST=nofile; $(tstClipboardGH-X11Smoke_1_STAGE_TARGET) quiet $(QUIET)$(APPEND) -t "$@" "done" if defined(VBOX_WITH_QTGUI) include $(PATH_SUB_CURRENT)/tstClipboardQt/Makefile.kmk endif endif ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS if defined(VBOX_WITH_LIBCURL) && defined(VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS_HTTP) PROGRAMS += tstClipboardHttpServer tstClipboardHttpServer_TEMPLATE = VBoxR3TstExe tstClipboardHttpServer_SOURCES = \ tstClipboardHttpServer.cpp \ ../clipboard-common.cpp \ ../clipboard-transfers.cpp \ ../clipboard-transfers-http.cpp \ ../clipboard-transfers-provider-local.cpp tstClipboardHttpServer_DEFS += VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS_HTTP if1of ($(KBUILD_TARGET), linux solaris) # Derived executable which also includes X11 dependencies. Might not run on pure server installations where X isn't installed. PROGRAMS += tstClipboardHttpServerX11 tstClipboardHttpServerX11_TEMPLATE = VBoxR3TstExe tstClipboardHttpServerX11_EXTENDS = tstClipboardHttpServer tstClipboardHttpServerX11_EXTENDS_BY = appending tstClipboardHttpServerX11_NAME = tstClipboardHttpServerX11 tstClipboardHttpServerX11_DEFS += TESTCASE_WITH_X11 tstClipboardHttpServerX11_SOURCES += \ ../clipboard-x11.cpp tstClipboardHttpServerX11_LIBS += \ Xt \ X11 endif endif endif endif include $(FILE_KBUILD_SUB_FOOTER)