VirtualBox

source: vbox/trunk/src/VBox/GuestHost/DragAndDrop/Makefile.kmk

Last change on this file was 98208, checked in by vboxsync, 17 months ago

GuestHost/DnD/*.kmk: s/VBOXGUESTR3LIB/VBoxGuestR3Lib/ + simplifications. bugref:10348

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1# $Id: Makefile.kmk 98208 2023-01-22 13:35:10Z vboxsync $
2## @file
3# Sub-Makefile for the shared DnD code for both, host and guest.
4#
5
6#
7# Copyright (C) 2014-2023 Oracle and/or its affiliates.
8#
9# This file is part of VirtualBox base platform packages, as
10# available from https://www.virtualbox.org.
11#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License
14# as published by the Free Software Foundation, in version 3 of the
15# License.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, see <https://www.gnu.org/licenses>.
24#
25# SPDX-License-Identifier: GPL-3.0-only
26#
27
28SUB_DEPTH = ../../../..
29include $(KBUILD_PATH)/subheader.kmk
30
31ifdef VBOX_WITH_TESTCASES
32 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
33endif
34
35VBOX_PATH_HOSTSERVICES_COMMON = $(PATH_ROOT)/src/VBox/HostServices/common
36
37#
38# DnDGuestR3Lib - For tools on the guest side,
39# e.g. VBoxClient/VBoxTray.
40#
41ifdef VBOX_WITH_ADDITIONS
42 LIBRARIES += VBoxDnDGuestR3Lib
43endif
44VBoxDnDGuestR3Lib_TEMPLATE = VBoxGuestR3Lib
45VBoxDnDGuestR3Lib_SOURCES = \
46 DnDDroppedFiles.cpp \
47 DnDMIME.cpp \
48 DnDPath.cpp \
49 DnDTransferObject.cpp \
50 DnDTransferList.cpp \
51 DnDUtils.cpp
52
53# LIBRARIES.win.amd64 += VBoxDnDGuestR3Lib-x86
54# VBoxDnDGuestR3Lib-x86_EXTENDS := VBoxDnDGuestR3Lib
55# VBoxDnDGuestR3Lib-x86_BLD_TRG_ARCH := x86
56
57#
58# DnDHostR3Lib - For the host side, e.g. Main
59# and frontends.
60#
61LIBRARIES += VBoxDnDHostR3Lib
62VBoxDnDHostR3Lib_TEMPLATE = VBoxR3Dll
63VBoxDnDHostR3Lib_SOURCES = \
64 $(VBoxDnDGuestR3Lib_SOURCES) \
65 $(VBOX_PATH_HOSTSERVICES_COMMON)/client.cpp \
66 $(VBOX_PATH_HOSTSERVICES_COMMON)/message.cpp
67
68include $(FILE_KBUILD_SUB_FOOTER)
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use