VirtualBox

source: vbox/trunk/src/VBox/Main/testcase/Makefile.kmk@ 13762

Last change on this file since 13762 was 12513, checked in by vboxsync, 16 years ago

PerfAPI: Windows collector re-done: WMI replaced with kernel and psapi calls.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1# $Id: Makefile.kmk 12513 2008-09-16 19:11:15Z vboxsync $
2## @file
3# Sub-Makefile for the VBox API testcases.
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = ../../../..
23include $(KBUILD_PATH)/subheader.kmk
24
25#
26# Target and globals (small mess)
27#
28ifndef VBOX_ONLY_SDK
29 if defined(VBOX_WITH_TESTCASES) || "$(USERNAME)" == "dmik"
30 PROGRAMS += tstAPI
31 ifdef VBOX_WITH_XPCOM
32 PROGRAMS += tstVBoxAPILinux
33 else
34 PROGRAMS += tstVBoxAPIWin
35 endif
36 ifdef VBOX_WITH_RESOURCE_USAGE_API
37 PROGRAMS += tstCollector
38 endif
39 endif # !VBOX_WITH_TESTCASES
40endif # !VBOX_ONLY_SDK
41if defined(VBOX_ONLY_SDK) || !defined(VBOX_WITH_XPCOM)
42 INSTALLS += samplesMSCOM
43endif
44if defined(VBOX_ONLY_SDK) || defined(VBOX_WITH_XPCOM)
45 INSTALLS += samplesXPCOM
46endif
47
48
49#
50# The samples
51#
52samplesMSCOM_MODE = a+r,u+w
53samplesMSCOM_INST = $(INST_SDK)bindings/mscom/samples/
54samplesMSCOM_SOURCES = tstVBoxAPIWin.cpp
55
56samplesXPCOM_MODE = a+r,u+w
57samplesXPCOM_INST = $(INST_SDK)bindings/xpcom/samples/
58samplesXPCOM_SOURCES = tstVBoxAPILinux.cpp makefile.tstVBoxAPILinux=>Makefile
59
60
61#
62# tstAPI
63#
64tstAPI_TEMPLATE = VBOXMAINCLIENTEXE
65#tstAPI_INST = $(INST_SDK)bindings/gluecom/samples/
66tstAPI_SOURCES = tstAPI.cpp
67ifeq ($(KBUILD_TARGET),win) ## @todo just add this to the template.
68tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
69else
70tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
71endif
72ifdef VBOX_WITH_RESOURCE_USAGE_API
73tstAPI_DEFS += VBOX_WITH_RESOURCE_USAGE_API
74endif
75
76
77#
78# tstVBoxAPILinux
79#
80# We only build the testcase here to make sure it builds.
81# It comes with a custom makefile which should be tested as well!
82#
83tstVBoxAPILinux_TEMPLATE = VBOXR3EXE
84tstVBoxAPILinux_SOURCES = tstVBoxAPILinux.cpp
85tstVBoxAPILinux_CXXFLAGS = -Wno-non-virtual-dtor -fshort-wchar
86tstVBoxAPILinux_LDFLAGS.solaris += '$(VBOX_GCC_RPATH_OPT)$$(VBOX_ORIGIN)/../../..'
87ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
88 tstVBoxAPILinux_DEFS += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
89endif
90tstVBoxAPILinux_INCS = \
91 $(VBOX_XPCOM_INCS) \
92 $(VBOX_PATH_SDK)/bindings/xpcom/include
93tstVBoxAPILinux_LIBPATH = $(LIBPATH_XPCOM)
94tstVBoxAPILinux_LIBS = $(LIB_XPCOM) $(LIB_RUNTIME)
95tstVBoxAPILinux_DEPS = \
96 $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
97
98
99#
100# tstVBoxAPIWin
101#
102tstVBoxAPIWin_TEMPLATE = VBOXMAINCLIENTEXE
103tstVBoxAPIWin_SOURCES = \
104 tstVBoxAPIWin.cpp \
105 $(VBOX_PATH_SDK)/bindings/mscom/lib/VirtualBox_i.c
106tstVBoxAPIWin_DEPS = \
107 $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
108
109
110#
111# tstCollector
112#
113tstCollector_TEMPLATE = VBOXMAINCLIENTEXE
114tstCollector_SOURCES = \
115 tstCollector.cpp \
116 ../Performance.cpp
117tstCollector_INCS = ../include
118tstCollector_LDFLAGS.darwin += -lproc
119tstCollector_LDFLAGS.solaris += -lkstat
120tstCollector_LDFLAGS.win += psapi.lib powrprof.lib
121
122
123# generate rules.
124include $(KBUILD_PATH)/subfooter.kmk
125
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use