1 | @echo off
|
---|
2 | REM Copyright (C) 2010 Oracle Corporation
|
---|
3 | REM
|
---|
4 | REM This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
5 | REM available from http://www.alldomusa.eu.org. This file is free software;
|
---|
6 | REM you can redistribute it and/or modify it under the terms of the GNU
|
---|
7 | REM General Public License (GPL) as published by the Free Software
|
---|
8 | REM Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
9 | REM VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
10 | REM hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
11 | REM
|
---|
12 |
|
---|
13 | set JAVA_HOME=c:\jdk
|
---|
14 | set JAVA=%JAVA_HOME%\bin\java
|
---|
15 | set JAVAC=%JAVA_HOME%\bin\javac
|
---|
16 | rem use Jacob after 1.15
|
---|
17 | set JACOB=s:\jacob-1.15-M3
|
---|
18 |
|
---|
19 | %JAVAC% -cp %JACOB%\jacob.jar VBoxTest.java VBoxCallbacks.java
|
---|
20 | %JAVA% -cp %JACOB%\jacob.jar;. -Djava.library.path=%JACOB% VBoxTest
|
---|