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
Line 
1# $Id: makefile.tstVBoxAPIXPCOM 98103 2023-01-17 14:15:46Z vboxsync $
2## @file
3# tstVBoxAPIXPCOM makefile
4#
5
6#
7# Copyright (C) 2006-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
28PATH_XPCOM = ..
29PATH_BIN = ../../../../
30
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
35PATH_XPCOM_IDL = $(PATH_XPCOM)/idl
36INCS_XPCOM = $(PATH_XPCOM)/include \
37 $(PATH_XPCOM)/include/nsprpub \
38 $(PATH_XPCOM)/include/string \
39 $(PATH_XPCOM)/include/xpcom \
40 $(PATH_XPCOM)/include/ipcd
41
42ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
43 DEFS_XPCOM += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
44endif
45
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
49
50
51#
52# Link with the public XPCOM libraries
53#
54tstVBoxAPIXPCOM: tstVBoxAPIXPCOM.o
55 g++ -g -o $@ $^ \
56 $(PATH_BIN)/VBoxXPCOM.so \
57 -Wl,-rpath $(PATH_BIN)/ \
58 -ldl -lpthread
59
60tstVBoxAPIXPCOM.o: tstVBoxAPIXPCOM.cpp
61 g++ -c -g -fshort-wchar $(addprefix -I, $(INCS_XPCOM)) $(addprefix -D, $(DEFS_XPCOM)) -o $@ tstVBoxAPIXPCOM.cpp
62
63clean:
64 rm -f tstVBoxAPIXPCOM tstVBoxAPIXPCOM.o
65
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use