diff --git a/starter.bat b/starter.bat new file mode 100644 index 0000000..7a4db47 --- /dev/null +++ b/starter.bat @@ -0,0 +1,7 @@ +@echo off + +SET EDIT_JAR="/editor/VisualCLAppEditor.jar" +SET CLAPP_JAR="/lib/CLApp.jar" +SET BCEL_JAR="/lib/bcel-5.2.jar" + +java -cp "$EDIT_JAR;$CLAPP_JAR;$BCEL_JAR" clp.edit.CLAppEditor diff --git a/starter.sh b/starter.sh new file mode 100644 index 0000000..492a83c --- /dev/null +++ b/starter.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +export EDIT_JAR="/editor/VisualCLAppEditor.jar" +export CLAPP_JAR="/lib/CLApp.jar" +export BCEL_JAR="/lib/bcel-5.2.jar" + +java -cp "$EDIT_JAR:$CLAPP_JAR:$BCEL_JAR" clp.edit.CLAppEditor