Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
dragan-clapp-creator authored Nov 11, 2022
1 parent 849dcec commit 2b66828
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions starter.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@echo off

SET EDIT_JAR="<your_path>/editor/VisualCLAppEditor.jar"
SET CLAPP_JAR="<your_path>/lib/CLApp.jar"
SET BCEL_JAR="<your_path>/lib/bcel-5.2.jar"

java -cp "$EDIT_JAR;$CLAPP_JAR;$BCEL_JAR" clp.edit.CLAppEditor
7 changes: 7 additions & 0 deletions starter.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

export EDIT_JAR="<your_path>/editor/VisualCLAppEditor.jar"
export CLAPP_JAR="<your_path>/lib/CLApp.jar"
export BCEL_JAR="<your_path>/lib/bcel-5.2.jar"

java -cp "$EDIT_JAR:$CLAPP_JAR:$BCEL_JAR" clp.edit.CLAppEditor

0 comments on commit 2b66828

Please sign in to comment.