You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
597 B

@echo off
rem Startup script for PRISM (Windows)
rem PRISM home directory
rem Default is .. so it can be run directly from the bin directory.
rem Change ".." to the actual PRISM directory to allow it to be run from anywhere.
rem An example would be: set PRISM_DIR="c:\Program Files\prism-2.1-win"
set PRISM_DIR=..
rem Add PRISM to path
path=%PRISM_DIR%\lib;%path%
rem Setup classpath - jar file (for binary versions) gets priority
set CP=%PRISM_DIR%\lib\prism.jar;%PRISM_DIR%\classes;%PRISM_DIR%\lib\pepa.zip
rem Run PRISM through Java
java -classpath %CP% prism.PrismCL %*