Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added batch file to build on windows #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions makejar.bat
Original file line number Diff line number Diff line change
@@ -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