bisq/package/windows/64bitBuild.bat

26 lines
819 B
Batchfile
Raw Normal View History

:: edit iss file -> AppVersion
2015-11-09 22:07:17 +01:00
:: Copy gui/deploy.Bitsquare.jar file from mac build to windows
2016-05-25 15:56:05 +02:00
:: edit -> -BappVersion and -srcfiles
2015-03-05 13:32:14 +01:00
:: 64 bit build
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
:: Did not get -BjvmOptions=-Xbootclasspath working on windows, but if the jdkfix jar is copied into the jdk/jre dir it will override the default classes
SET version=0.4.9
SET jdk=C:\Program Files\Java\jdk1.8.0_92
SET outdir=\\VBOXSVR\vm_shared_windows
call "%jdk%\bin\javapackager.exe" -deploy ^
2016-07-03 00:32:48 +02:00
-BappVersion="%version%" ^
-native exe ^
-name Bitsquare ^
-title Bitsquare ^
-vendor Bitsquare ^
-outdir %outdir% ^
-appclass io.bitsquare.app.BitsquareAppMain ^
-srcfiles %outdir%\Bitsquare-%version%.jar ^
-outfile Bitsquare ^
-Bruntime="%jdk%\jre" ^
-BjvmProperties=-Djava.net.preferIPv4Stack=true