mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
18 lines
370 B
Batchfile
18 lines
370 B
Batchfile
@echo off
|
|
|
|
@rem Creates an EXE installer for DemoBench.
|
|
@rem Assumes that Inno Setup 5+ has already been installed (http://www.jrsoftware.org/isinfo.php)
|
|
|
|
if not defined JAVA_HOME goto NoJavaHome
|
|
|
|
set DIRNAME=%~dp0
|
|
if "%DIRNAME%" == "" set DIRNAME=.
|
|
|
|
call %DIRNAME%\gradlew -PpackageType=exe javapackage
|
|
goto end
|
|
|
|
:NoJavaHome
|
|
echo "Please set JAVA_HOME correctly"
|
|
|
|
:end
|