mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
8 lines
244 B
Batchfile
Executable file
8 lines
244 B
Batchfile
Executable file
@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
|