Subversion Repositories filter_foundry

Rev

Rev 438 | 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 exist release.zip del release.zip
  6.  
  7. copy README.md README.txt
  8. copy CHANGELOG.md CHANGELOG.txt
  9. "c:\Program Files\7-Zip\7z.exe" a -tzip "release.zip" README.txt CHANGELOG.txt LICENSE_*.* examples
  10. del README.txt
  11. del CHANGELOG.txt
  12.  
  13. cd doc
  14. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" *.pdf
  15. cd ..
  16.  
  17. cd wpj
  18. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" FilterFoundry.8bf
  19. cd ..
  20.  
  21. cd visual_studio
  22. "c:\Program Files\7-Zip\7z.exe" a -tzip "..\release.zip" FilterFoundry64.8bf
  23. cd ..
  24.  
  25. explorer /select,release.zip
  26.  
  27. pause.
  28.