-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwitz.bat
More file actions
executable file
·25 lines (24 loc) · 1.13 KB
/
twitz.bat
File metadata and controls
executable file
·25 lines (24 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@echo off
setlocal
set JAVA_HOME=F:\Documents\jdk1.6.0_20
REM set JAVA_HOME=F:\Documents\jre
set ANT_HOME=F:\Documents\apache-ant-1.8.1
set PATH=%PATH%;%JAVA_HOME%\bin;%ANT_HOME%\bin
IF "%1"=="" GOTO default
IF "%1"=="run" GOTO RUN
IF "%1"=="win" GOTO WRUN
IF "%1"=="build" GOTO BUILD
IF "%1"=="prompt" GOTO default
:RUN
java -jar dist\Twitz.jar
GOTO done
:BUILD
ant jar
GOTO done
:default
cmd.exe
GOTO done
:WRUN
java -cp "F:\Documents\Twitz\thirdparty\AppFramework.jar;F:\Documents\Twitz\thirdparty\twitter4j-core-2.1.2.jar;F:\Documents\Twitz\thirdparty\swingx-0.9.4.jar;F:\Documents\Twitz\thirdparty\substance-tools.jar;F:\Documents\Twitz\thirdparty\substance-tst.jar;F:\Documents\Twitz\thirdparty\substance.jar;F:\Documents\Twitz\thirdparty\trident.jar;F:\Documents\Twitz\thirdparty\commons-logging-1.1.1.jar;F:\Documents\Twitz\${libs.swing-layout.classpath};F:\Documents\Twitz\${libs.absolutelayout.classpath};F:\Documents\Twitz\thirdparty\log4j-1.2.14.jar;F:\Documents\Twitz\thirdparty\antlr-runtime-3.1.3.jar;F:\Documents\Twitz\thirdparty\sqljet.1.0.3.b914.jar;F:\Documents\Twitz\dist\Twitz.jar" twitz.TwitzApp
GOTO done
:done