bisq/package/windows/64bitBuild.bat

35 lines
920 B
Batchfile
Raw Normal View History

2017-06-28 00:54:58 +02:00
:: Invoke from bisq home directory
:: edit iss file -> AppVersion
:: edit -> -BappVersion and -srcfiles
:: 64 bit build
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
2018-01-09 23:36:49 +01:00
SET version=0.6.3
2017-06-28 00:54:58 +02:00
:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows
:: Others might use the following
:: SET outdir=.
call "%JAVA_HOME%\bin\javapackager.exe" -deploy ^
-BappVersion="%version%" ^
-native exe ^
-name Bisq ^
-title Bisq ^
-vendor Bisq ^
-outdir %outdir% ^
-appclass io.bisq.gui.app.BisqAppMain ^
-srcfiles %outdir%\Bisq.jar ^
2017-12-20 01:12:18 +01:00
-srcfiles %outdir%\bcpg-jdk15on.jar ^
-srcfiles %outdir%\bcprov-jdk15on.jar ^
2017-06-28 00:54:58 +02:00
-outfile Bisq ^
-Bruntime="%JAVA_HOME%\jre"
2017-11-08 11:11:51 -05:00
:: when we have support for security manager we use that
2017-06-28 00:54:58 +02:00
:: -BjvmOptions=-Djava.security.manager ^
:: -BjvmOptions=-Djava.security.debug=failure ^
:: -BjvmOptions=-Djava.security.policy=file:bisq.policy ^
:: -srcfiles "core/src/main/resources/bisq.policy" ^