ironOS native ios app
at main 86 lines 2.5 kB view raw
1@rem 2@rem Copyright 2015-2024 the original author or authors. 3@rem 4@rem Licensed under the Apache License, Version 2.0 (the "License"); 5@rem you may not use this file except in compliance with the License. 6@rem You may obtain a copy of the License at 7@rem 8@rem https://www.apache.org/licenses/LICENSE-2.0 9@rem 10 11@if "%DEBUG%"=="" @echo off 12@rem ########################################################################## 13@rem 14@rem Gradle startup script for Windows 15@rem 16@rem ########################################################################## 17 18@rem Set local scope for the variables with windows NT shell 19if "%OS%"=="Windows_NT" setlocal 20 21set DIRNAME=%~dp0 22if "%DIRNAME%"=="" set DIRNAME=. 23@rem This is normally unused 24set APP_BASE_NAME=%~n0 25set APP_HOME=%DIRNAME% 26 27@rem Resolve any "." and ".." in APP_HOME to make it shorter. 28for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 29 30@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 32 33@rem Find java.exe 34if defined JAVA_HOME goto findJavaFromJavaHome 35 36set JAVA_EXE=java.exe 37%JAVA_EXE% -version >NUL 2>&1 38if %ERRORLEVEL% equ 0 goto execute 39 40echo. 1>&2 41echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 42echo. 1>&2 43echo Please set the JAVA_HOME variable in your environment to match the 1>&2 44echo location of your Java installation. 1>&2 45 46goto fail 47 48:findJavaFromJavaHome 49set JAVA_HOME=%JAVA_HOME:"=% 50set JAVA_EXE=%JAVA_HOME%/bin/java.exe 51 52if exist "%JAVA_EXE%" goto execute 53 54echo. 1>&2 55echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 56echo. 1>&2 57echo Please set the JAVA_HOME variable in your environment to match the 1>&2 58echo location of your Java installation. 1>&2 59 60goto fail 61 62:execute 63@rem Setup the command line 64 65set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 66 67 68@rem Execute Gradle 69"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 70 71:end 72@rem End local scope for the variables with windows NT shell 73if %ERRORLEVEL% equ 0 goto mainEnd 74 75:fail 76rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77rem the _cmd.exe /c_ return code! 78set EXIT_CODE=%ERRORLEVEL% 79if %EXIT_CODE% equ 0 set EXIT_CODE=1 80if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% 81exit /b %EXIT_CODE% 82 83:mainEnd 84if "%OS%"=="Windows_NT" endlocal 85 86:omega