You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
244 B
9 lines
244 B
|
10 years ago
|
@echo off
|
||
|
|
set JAVA=java
|
||
|
|
set JAVAC=javac
|
||
|
|
REM notice the semicolon for Windows. Write once, run ... oh nevermind
|
||
|
|
set CP=miniupnpc_win32.jar;.
|
||
|
|
|
||
|
|
%JAVAC% -cp "%CP%" JavaBridgeTest.java || exit 1
|
||
|
|
%JAVA% -cp "%CP%" JavaBridgeTest 12345 UDP || exit 1
|