Callvalidator.bat 784 B

12345678910111213141516171819202122232425262728
  1. @ECHO off
  2. :: The folder where the callvalidator.py can be found
  3. set VALIDATOR=tools
  4. :: The list file with the files that will be validated [optional]
  5. set LIST=glife-validate.qproj
  6. :: The qsrc file that will be validated [optional]
  7. :: set FILE=
  8. :: The folder where the LIST or the FILE can be found [optional, will use the root folder if not set]
  9. set FOLDER=tools
  10. :: The folder where the qsrc file can be found [mandatory]
  11. set SOURCE=locations
  12. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  13. cls
  14. echo.
  15. echo.
  16. @ECHO ON
  17. :: python %VALIDATOR%\callvalidator.py source=%SOURCE%
  18. :: python %VALIDATOR%\callvalidator.py source=%SOURCE% file=%FILE% folder=%FOLDER%
  19. python %VALIDATOR%\callvalidator.py source=%SOURCE% list=%LIST% folder=%FOLDER%
  20. @ECHO OFF
  21. echo.
  22. echo Done.
  23. :exit