7 lines
323 B
Batchfile
7 lines
323 B
Batchfile
@echo off
|
|
REM Beispielaufruf mit Parametern:
|
|
REM --in: Ordner mit .svg bzw. .xml-Dateien (optional. Standard: data/svg)
|
|
REM --out: Zielverzeichnis (optional. Standard: work/converted_dxfs)
|
|
CALL manage_interpreter.bat activate_interpreter
|
|
python %PROJECT_LIB%\svg2dxf.py %*
|
|
CALL manage_interpreter.bat deactivate_interpreter |