2017-03-12 16:00:40 -05:00
|
|
|
:: Invoke from bisq home directory
|
2016-07-07 13:14:40 +02:00
|
|
|
:: edit iss file -> AppVersion
|
|
|
|
:: edit -> -BappVersion and -srcfiles
|
|
|
|
|
2016-10-05 23:57:12 +02:00
|
|
|
:: 32 bit build
|
2016-07-07 13:14:40 +02:00
|
|
|
:: 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
|
2016-07-07 13:14:40 +02:00
|
|
|
SET outdir=\\VBOXSVR\vm_shared_windows_32bit
|
2016-10-05 23:57:12 +02:00
|
|
|
:: Others might use the following
|
|
|
|
:: SET outdir=.
|
2016-07-07 13:14:40 +02:00
|
|
|
|
2016-10-05 23:57:12 +02:00
|
|
|
call "%JAVA_HOME%\bin\javapackager.exe" -deploy ^
|
2016-07-07 13:14:40 +02:00
|
|
|
-BappVersion="%version%" ^
|
|
|
|
-native exe ^
|
2017-03-12 14:28:12 -05:00
|
|
|
-name bisq ^
|
|
|
|
-title bisq ^
|
|
|
|
-vendor bisq ^
|
2016-07-07 13:14:40 +02:00
|
|
|
-outdir %outdir% ^
|
2017-03-12 16:00:40 -05:00
|
|
|
-appclass io.bisq.app.BisqAppMain ^
|
2017-03-12 14:28:12 -05:00
|
|
|
-srcfiles %outdir%\bisq.jar ^
|
2017-03-12 16:00:40 -05:00
|
|
|
-srcfiles "core/src/main/resources/bisq.policy" ^
|
2017-03-12 14:28:12 -05:00
|
|
|
-outfile bisq ^
|
2016-10-05 23:57:12 +02:00
|
|
|
-Bruntime="%JAVA_HOME%\jre" ^
|
2017-01-25 09:56:29 +01:00
|
|
|
-BjvmOptions=-Djava.security.manager ^
|
|
|
|
-BjvmOptions=-Djava.security.debug=failure ^
|
2017-03-12 16:00:40 -05:00
|
|
|
-BjvmOptions=-Djava.security.policy=file:bisq.policy ^
|
2017-03-12 14:28:12 -05:00
|
|
|
-Bicon=package\windows\bisq.ico
|
2017-02-20 15:16:13 +01:00
|
|
|
|