| 1 | | echo off |
|---|
| 2 | | if (%1)==() echo.ABORTED: no destination name! |
|---|
| 3 | | if (%1)==() exit /b |
|---|
| 4 | | |
|---|
| 5 | | echo on |
|---|
| 6 | | python \Programs\ArchGenXML\Archgenxml.py --author="Sean Gillies" --author="Tom Elliott" --copyright="Ancient World Mapping Center, University of North Carolina at Chapel Hill, U.S.A." --license=GPL -o ./%1 ./models/%1.xmi |
|---|
| | 1 | set PYTHON=c:\Python24\python |
|---|
| | 2 | set AGXROOT=c:\Programs\ArchGenXML |
|---|
| | 3 | %PYTHON% %AGXROOT%\Archgenxml.py --author="Sean Gillies" --author="Tom Elliott" --copyright="Ancient World Mapping Center, University of North Carolina at Chapel Hill, U.S.A." --license=GPL -o ./GeographicEntityLite ./models/GeographicEntityLite.xmi |
|---|