Show QT2DEF.BAT syntax highlighted
@rem Run this script to convert the .ui files generated by QT (http://www.trolltech.com) to the file format used by AWS
@rem (the Alternate Window System plugin for Crystal Space).
@rem In order to run properly this script the CRYSTAL var need to be defined, and besides to that you have to define
@rem the variable SKE_XALAN, SKE_SKE and SKE_JAVA modifying the lines here below. Read below please.
@echo on
doskey
@rem Set this variable to the directory where you installed XALAN (yes, you need it!)
set SKE_XALAN=E:\luca\xalan\xalan-j_2_6_0\
@rem Set this variable to the directory of the CVS repository of SKE.
set SKE_SKE=e:\luca\ske\ske
@rem Set this var to the 'bin' directory of your preferred Java Virtual Machine. Usually the SUN JVM 1.4 or better is good!
set SKE_JAVA=C:\Programmi\Java\jre1.5.0\bin
@rem Dont touch the code below, if needed contact me at groton@users.sourceforge.net
set PATH=%SKE_JAVA%;%PATH%
set CLASSPATH=%SKE_XALAN%\bin\xml-apis.jar;%SKE_XALAN%\bin\xercesImpl.jar;%SKE_XALAN%\bin\xalan.jar;%CLASSPATH%
java org.apache.xalan.xslt.Process -IN %SKE_SKE%\data\ske\aws\uiNEW.ui -XSL %CRYSTAL%\scripts\qt2aws\qt3aws.xsl -OUT %SKE_SKE%\data\ske\aws\uiNEW.def
java org.apache.xalan.xslt.Process -IN %SKE_SKE%\data\ske\aws\uiREPLAY.ui -XSL %CRYSTAL%\scripts\qt2aws\qt3aws.xsl -OUT %SKE_SKE%\data\ske\aws\uiREPLAY.def
@rem To know the version of Xalan/Xerces you are running, run in a shell the command below.
@rem java org.apache.xerces.impl.Version
See more files for this project here