Subversion Repositories filter_foundry

Rev

Rev 437 | Go to most recent revision | View as "text/x-msdos-batch" | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. @echo off
  2.  
  3. cd /d "%~dp0"
  4.  
  5. if not exist "c:\Program Files\7-Zip\7z.exe" (
  6.     echo Please install 7-zip!
  7.     pause.
  8.     exit /b 1
  9. )
  10.  
  11. if exist release.zip del release.zip
  12.  
  13. copy README.md README.txt
  14. copy CHANGELOG.md CHANGELOG.txt
  15. "c:\Program Files\7-Zip\7z.exe" a -tzip "release.zip" README.txt CHANGELOG.txt LICENSE_*.* examples
  16. del README.txt
  17. del CHANGELOG.txt
  18.  
  19. cd doc
  20. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" *.pdf
  21. cd ..
  22.  
  23. cd wpj
  24. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" FilterFoundry.8bf
  25. cd ..
  26.  
  27. cd visual_studio
  28. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" FilterFoundry64.8bf
  29. cd ..
  30.  
  31. explorer /select,release.zip
  32.  
  33. pause.
  34.