mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 06:41:41 +01:00
Fix git ignore (bat was ignored!)
This commit is contained in:
parent
4fafe3ce04
commit
4c46293373
6 changed files with 67 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -25,8 +25,6 @@ build
|
|||
/bisq*
|
||||
/xchange
|
||||
desktop.ini
|
||||
*.bat
|
||||
!package/windows/*bit*.bat
|
||||
*/target/*
|
||||
*.class
|
||||
/gui/deploy/*
|
||||
|
|
34
package/win/32bitBuild.bat
Normal file
34
package/win/32bitBuild.bat
Normal file
|
@ -0,0 +1,34 @@
|
|||
:: Invoke from bisq home directory
|
||||
:: edit iss file -> AppVersion
|
||||
:: edit -> -BappVersion and -srcfiles
|
||||
|
||||
:: 32 bit build
|
||||
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
||||
|
||||
SET version=0.5.0
|
||||
|
||||
:: Private setup
|
||||
SET outdir=\\VBOXSVR\vm_shared_windows_32bit
|
||||
:: 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 ^
|
||||
-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 ^
|
||||
|
||||
:: -srcfiles "core/src/main/resources/bisq.policy" ^
|
||||
|
33
package/win/64bitBuild.bat
Normal file
33
package/win/64bitBuild.bat
Normal file
|
@ -0,0 +1,33 @@
|
|||
:: 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)
|
||||
|
||||
SET version=0.5.0
|
||||
|
||||
:: 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 ^
|
||||
-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 ^
|
||||
|
||||
:: -srcfiles "core/src/main/resources/bisq.policy" ^
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Loading…
Add table
Reference in a new issue