VirtualBox

source: vbox/trunk/src/VBox/Main/testcase/makefile.tstVBoxAPIXPCOM

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
RevLine 
[69388]1# $Id: makefile.tstVBoxAPIXPCOM 98103 2023-01-17 14:15:46Z vboxsync $
2## @file
[48164]3# tstVBoxAPIXPCOM makefile
[1]4#
[69388]5
[1]6#
[98103]7# Copyright (C) 2006-2023 Oracle and/or its affiliates.
[5999]8#
[96407]9# This file is part of VirtualBox base platform packages, as
10# available from https://www.virtualbox.org.
[5999]11#
[96407]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#
[1]27
[19429]28PATH_XPCOM = ..
29PATH_BIN = ../../../../
[1]30
[11551]31# This setting must be the same as used when building VBoxXPCOM.so.
32# If you get a lot of unresolved symbols, try commenting it out.
33VBOX_WITH_XPCOM_NAMESPACE_CLEANUP=1
34
[1]35PATH_XPCOM_IDL = $(PATH_XPCOM)/idl
36INCS_XPCOM = $(PATH_XPCOM)/include \
[19429]37 $(PATH_XPCOM)/include/nsprpub \
38 $(PATH_XPCOM)/include/string \
39 $(PATH_XPCOM)/include/xpcom \
40 $(PATH_XPCOM)/include/ipcd
[1]41
[11551]42ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
43 DEFS_XPCOM += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
44endif
45
[50339]46# Adjust this to match your platform, pick from RT_OS_LINUX, RT_OS_WINDOWS,
47# RT_OS_DARWIN, RT_OS_SOLARIS...
48DEFS_XPCOM += RT_OS_LINUX
[11551]49
[50339]50
[1]51#
52# Link with the public XPCOM libraries
53#
[48164]54tstVBoxAPIXPCOM: tstVBoxAPIXPCOM.o
[2449]55 g++ -g -o $@ $^ \
56 $(PATH_BIN)/VBoxXPCOM.so \
[5501]57 -Wl,-rpath $(PATH_BIN)/ \
[1]58 -ldl -lpthread
59
[48164]60tstVBoxAPIXPCOM.o: tstVBoxAPIXPCOM.cpp
61 g++ -c -g -fshort-wchar $(addprefix -I, $(INCS_XPCOM)) $(addprefix -D, $(DEFS_XPCOM)) -o $@ tstVBoxAPIXPCOM.cpp
[1]62
63clean:
[48164]64 rm -f tstVBoxAPIXPCOM tstVBoxAPIXPCOM.o
[69388]65
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use