mirror of
https://github.com/monero-project/monero.git
synced 2024-11-05 16:07:37 +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
|