From 6f0d99824b2928cce0744440d491115fbc2f9c0e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 24 May 2020 21:45:03 +0200 Subject: [PATCH] Add native-image.cmd to build a Windows native binary --- native-image.cmd | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 native-image.cmd diff --git a/native-image.cmd b/native-image.cmd new file mode 100755 index 0000000..d0e0c6d --- /dev/null +++ b/native-image.cmd @@ -0,0 +1,2 @@ +REM --allow-incomplete-classpath due to missing XZ implementation +%GRAALVM_HOME%/bin/native-image --allow-incomplete-classpath --no-server -H:Name="DictionaryPC" com.hughes.android.dictionary.engine.Runner --no-fallback -cp bin/;commons-compress.jar;commons-text.jar;commons-lang3.jar;icu4j-49.1.jar -H:IncludeResources="com/ibm/icu/.*" -H:ReflectionConfigurationFiles=native-image-reflection.json -- 2.43.0