I want to build windows executable on linux OS(ubuntu) using quarkus native. When i build on Linux it creates "app-runner" and when i build it on Windows it is "app-runner.exe"
It creates problem where i have to switch to certain OS to release proper build
I installed GraalVM for Java 17 and i use this command for building
note: i skip tests to reduce total build time
mvn clean install -Dnative -DskipTests -Dquarkus.profile=dev
I looked in quarkus guides but i couldn't find any relevant information about this problem.