bisq/package/windows/64bitBuild.bat

31 lines
828 B
Batchfile
Raw Normal View History

2016-10-05 23:57:12 +02:00
:: Invoke from bitsquare home directory
:: edit iss file -> AppVersion
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)
2017-02-12 13:38:26 -05:00
SET version=0.5.0.0
2016-10-05 23:57:12 +02:00
:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows
2016-10-05 23:57:12 +02:00
:: Others might use the following
:: SET outdir=.
call "%JAVA_HOME%\bin\javapackager.exe" -deploy ^
2016-07-03 00:32:48 +02:00
-BappVersion="%version%" ^
-native exe ^
-name bisq ^
-title bisq ^
-vendor bisq ^
-outdir %outdir% ^
-appclass io.bitsquare.app.BitsquareAppMain ^
-srcfiles %outdir%\bisq.jar ^
2017-02-20 17:04:17 +01:00
-srcfiles "core/src/main/resources/bitsquare.policy" ^
-outfile bisq ^
2016-10-05 23:57:12 +02:00
-Bruntime="%JAVA_HOME%\jre" ^
-BjvmOptions=-Djava.security.manager ^
-BjvmOptions=-Djava.security.debug=failure ^
-BjvmOptions=-Djava.security.policy=file:bitsquare.policy ^
-Bicon=package\windows\bisq.ico