bisq/package/windows/32bitBuild.bat

34 lines
881 B
Batchfile
Raw Normal View History

2017-06-27 01:29:51 +02:00
:: Invoke from bisq home directory
:: edit iss file -> AppVersion
:: edit -> -BappVersion and -srcfiles
2016-10-05 23:57:12 +02:00
:: 32 bit build
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
2017-06-27 01:29:51 +02:00
SET version=0.5.0
2016-10-05 23:57:12 +02:00
:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows_32bit
2016-10-05 23:57:12 +02:00
:: Others might use the following
:: SET outdir=.
2016-10-05 23:57:12 +02:00
call "%JAVA_HOME%\bin\javapackager.exe" -deploy ^
-BappVersion="%version%" ^
-native exe ^
2017-06-27 01:29:51 +02:00
-name bisq ^
-title bisq ^
-vendor bisq ^
-outdir %outdir% ^
2017-06-27 01:29:51 +02:00
-appclass io.bisq.gui.app.BisqAppMain ^
-srcfiles %outdir%\bisq.jar ^
-srcfiles "core/src/main/resources/bisq.policy" ^
-outfile bisq ^
-Bicon=package\windows\bisq.ico ^
-Bruntime="%JAVA_HOME%\jre"
:: when we have support for security manager we use that
:: -BjvmOptions=-Djava.security.manager ^
:: -BjvmOptions=-Djava.security.debug=failure ^
:: -BjvmOptions=-Djava.security.policy=file:bisq.policy ^