From 45cb229d90b93f0a9f865e0bb4cd774ef96ff68f Mon Sep 17 00:00:00 2001 From: Bob Walker Date: Mon, 7 Jul 2014 14:12:48 +0100 Subject: [PATCH] Added batch file to build on windows --- makejar.bat | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 makejar.bat diff --git a/makejar.bat b/makejar.bat new file mode 100644 index 0000000..37ac4b2 --- /dev/null +++ b/makejar.bat @@ -0,0 +1,17 @@ +set CLASSPATH=jars\i4jruntime.jar;jars\forms-1.1.0.jar;. + +javac -cp %CLASSPATH% JAuth/AuthenticatorGUI.java + +jar xf jars\forms-1.1.0.jar + +echo Main-Class: JAuth.AuthenticatorGUI > manifest +echo Name: JAuth >> manifest +echo Implementation-Title: JAuth >> manifest +echo Implementation-Version: 1.0 >> manifest +echo Specification-Title: JAuth >> manifest +echo Specification-Version: 1.0 >> manifest +echo Created-By: Michele Clamp, James Cuff, John Brunelle >> manifest + +jar cmf manifest JAuth.jar JAuth\*.class JAuth\fonts\*.ttf JAuth\logo\*.png JAuth\logo\*.icns com + +