VirtualBox

source: vbox/trunk/src/VBox/Main/testcase/makefile.tstVBoxAPIWin@ 61205

Last change on this file since 61205 was 60765, checked in by vboxsync, 9 years ago

API: stop using ATL and use a vastly smaller lookalike instead, plus a lot of cleanups

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1#
2# tstVBoxAPILinux makefile
3#
4#
5# Copyright (C) 2006-2016 Oracle Corporation
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15# Several assumptions and propositions:
16# - Visual Studio has already installed on machine or you already have nmake.exe, cl.exe, link.exe
17# - Windows SDK has already installed on machine or you already have Uuid.Lib Ole32.Lib OleAut32.Lib OleDlg.Lib
18# - VirtualBox SDK was downloaded and was placed into folder where VirtualBox had been installed.
19# - nmake is a default tool that builds projects based on commands contained in this description file
20# - cl is cl.exe - Windows compiler
21# - link is link.exe - Windows linker
22# - all needed paths have been set in working environment. It means that when you type "cl" from the console,
23# Windows shall find cl.exe by using enviroment variable PATH or something similar.
24#
25# The best way to accomplish it is to run a script vcvars32.bat located in the Visual studio "bin" directory.
26# This script installs needed paths in your working environment.
27# Important!!!
28# Script vcvars32.bat sets up needed paths only for local console session.
29# For permanent using, needed paths must be added globally.
30#
31# Several possible examples of paths:
32# VS_INSTALL_PATH = "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\"
33# VS_INCLUDE_PATH = "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include"
34# WIN_SDK_INCLUDE_PATH = "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include"
35# WIN_SDK_LIB_PATH = "C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib\x64\"
36# VB_INSTALL_PATH = "C:\Program Files\Oracle\VirtualBox"
37#
38
39
40CXX = cl
41LINK = link
42PATH_MSCOM = ../../../bindings/mscom
43INCS_MSCOM = $(PATH_MSCOM)/include
44LIBS_MSCOM = $(PATH_MSCOM)/lib
45
46LIBS_DEPS = "Uuid.Lib" "Ole32.Lib" "OleAut32.Lib" "OleDlg.Lib"
47
48tstVBoxAPIWin_SOURCES = $(LIBS_MSCOM)/VirtualBox_i.c
49tstVBoxAPIWin_DEPS = $(INCS_MSCOM)
50
51COMPILER_CMDLINE = /Zi /nologo /W3 /WX- /Od /Oy- /Gm /EHsc /RTC1 /GS /fp:precise /Gd /analyze- /errorReport:queue
52
53LINKER_CMDLINE = /INCREMENTAL /DEBUG /SUBSYSTEM:CONSOLE
54
55# default linking
56tstVBoxAPIWin.exe: tstVBoxAPIWin.obj VirtualBox_i.obj
57 $(LINK) /out:tstVBoxAPIWin.exe $** $(LIBS_DEPS)
58
59# default compilation
60tstVBoxAPIWin.obj:
61 $(CXX) /c /I$(INCS_MSCOM) tstVBoxAPIWin.cpp
62
63# default compilation
64VirtualBox_i.obj:
65 $(CXX) /c /I$(INCS_MSCOM) $(tstVBoxAPIWin_SOURCES)
66
67# linking with defined linker's options
68#tstVBoxAPIWin.exe: tstVBoxAPIWin.obj VirtualBox_i.obj
69# $(LINK) $(LINKER_CMDLINE) /out:tstVBoxAPIWin.exe $** $(LIBS_DEPS)
70
71# compile with pre-defined compiler's options and locally defined paths
72#tstVBoxAPIWin.obj:
73# $(CXX) /c $(COMPILER_CMDLINE) /I$(INCS_MSCOM) /I$(WIN_SDK_INCLUDE_PATH) /I$(VS_INCLUDE_PATH) tstVBoxAPIWin.cpp
74
75# compile with locally defined paths
76#tstVBoxAPIWin.obj:
77# $(CXX) /c /I$(INCS_MSCOM) /I$(WIN_SDK_INCLUDE_PATH) /I$(VS_INCLUDE_PATH) tstVBoxAPIWin.cpp
78
79# compile with pre-defined compiler's options and locally defined paths
80#VirtualBox_i.obj:
81# $(CXX) /c $(COMPILER_CMDLINE) /I$(INCS_MSCOM) /I$(WIN_SDK_INCLUDE_PATH) /I$(VS_INCLUDE_PATH) $(tstVBoxAPIWin_SOURCES)
82
83# compile with locally defined paths
84#VirtualBox_i.obj:
85# $(CXX) /c /I$(INCS_MSCOM) /I$(WIN_SDK_INCLUDE_PATH) /I$(VS_INCLUDE_PATH) $(tstVBoxAPIWin_SOURCES)
86
87
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette