You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
great tool! Your README only includes linux as the target architecture in the Java section. Is there any reason for that?
I don't think so, I just built self-contained Java applications for Linux as well as for Windows. You can adjust the Script used for the Node.js example (it's for Windows), in the end mine looked as follows:
Content of launcher.cmd
@ECHO OFF
SETLOCAL
SET "JAVA_EXE=%~dp0\jre\bin\java.exe"
SET "APP_JAR=%~dp0\application.jar"
CALL %JAVA_EXE% -jar %APP_JAR% %*
EXIT /B %ERRORLEVEL%
Having the Windows JRE in place, creating an executable for Windows is as easy as this:
Dear developers,
great tool! Your README only includes linux as the target architecture in the Java section. Is there any reason for that?
The text was updated successfully, but these errors were encountered: