bisq/package/windows/create_64bit_app.bat

13 lines
680 B
Batchfile
Raw Normal View History

2015-03-05 13:32:14 +01:00
cd ..\..\
2015-11-09 22:07:17 +01:00
mkdir gui\deploy
2016-05-25 15:56:05 +02:00
:: edit iss file -> AppVersion
2015-11-09 22:07:17 +01:00
:: Copy gui/deploy.Bitsquare.jar file from mac build to windows
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)
2016-06-17 01:54:38 +02:00
call "C:\Program Files\Java\jdk1.8.0_92\bin\javapackager.exe" -deploy -BappVersion=0.4.9 -native exe -name Bitsquare -title Bitsquare -vendor Bitsquare -outdir "\\VBOXSVR\vm_shared_windows" -appclass io.bitsquare.app.BitsquareAppMain -srcfiles "\\VBOXSVR\vm_shared_windows\Bitsquare-0.4.9.jar" -outfile Bitsquare -Bruntime="C:\Program Files\Java\jdk1.8.0_92\jre" -BjvmProperties=-Djava.net.preferIPv4Stack=true
2015-12-31 00:10:27 +01:00
2015-03-05 13:32:14 +01:00
cd package\windows