Subversion Repositories filter_foundry

Rev

Rev 438 | 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. "c:\Program Files\7-Zip\7z.exe" a -tzip "release.zip" doc\*.pdf
  20.  
  21. cd wpj
  22. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" FilterFoundry.8bf
  23. cd ..
  24.  
  25. cd visual_studio
  26. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" FilterFoundry64.8bf
  27. cd ..
  28.  
  29. explorer /select,release.zip
  30.  
  31. pause.
  32.