To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / bin / yc.bat
History | View | Annotate | Download (529 Bytes)
| 1 |
@echo off |
|---|---|
| 2 |
|
| 3 |
set maypath=%~dp0.. |
| 4 |
set jarpath=%maypath%\ext\jar |
| 5 |
set nativepath=%maypath%\ext\native\win64 |
| 6 |
set yetipath=%maypath%\..\yeti |
| 7 |
|
| 8 |
java -classpath "%maypath%\may.jar;%yetipath%\yeti.jar;%jarpath%\jline-2.11-SNAPSHOT.jar;%jarpath%\jvamp.jar;%jarpath%\yertle.jar;%jarpath%\jtransforms-2.4.jar;%jarpath%\jzy3d-swt-0.9.1.jar;%jarpath%\jzy3d-api-0.9.1.jar;%jarpath%\jogl-all.jar;%jarpath%\gluegen.jar;%jarpath%\opencsv-2.1.jar;%jarpath%\org.convexhull.jar" -Djava.library.path=%nativepath% yeti.lang.compiler.yeti "%~1" |
| 9 |
|