makechm.bat 796 B

1234567891011121314151617181920212223242526
  1. @echo off
  2. REM
  3. REM Verify that we can find the 'makechm' python script
  4. REM and the python interpreter. If we can find both, then
  5. REM run 'makechm'.
  6. REM
  7. if not exist makepanda\makechm.py goto :missing1
  8. if not exist thirdparty\win-python\python.exe goto :missing2
  9. thirdparty\win-python\python.exe makepanda\makechm.py %*
  10. goto done
  11. :missing1
  12. echo You need to change directory to the root of the panda source tree
  13. echo before invoking makechm.
  14. goto done
  15. :missing2
  16. echo You seem to be missing the 'thirdparty' directory. You probably checked
  17. echo the source code out from sourceforge. The sourceforge repository is
  18. echo missing the 'thirdparty' directory. You will need to supplement the
  19. echo code by downloading the 'thirdparty' directory from www.panda3d.org
  20. goto done
  21. :done