blob: 1f7e8a9f382f4aa4d0190a87071d117a34ec5a2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@echo off
rem Start-up script for Asymptote
rem
rem Copyright 2009 by Tomasz M. Trzeciak
rem Public Domain
setlocal enableextensions
rem Suppress cygwin warning about DOS paths
set CYGWIN=nodosfilewarning
rem Add bin dir to PATH
for %%I in ("%~f0\..") do path %%~fI;%PATH%
rem Call asy.exe
"%~dp0..\..\tlpkg\asymptote\asy.exe" %*
|