Subversion Repositories filter_foundry

Rev

Rev 438 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
437 daniel-mar 1
@echo off
2
 
3
cd /d "%~dp0"
4
 
438 daniel-mar 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
 
437 daniel-mar 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
 
458 daniel-mar 19
"c:\Program Files\7-Zip\7z.exe" a -tzip "release.zip" doc\*.pdf
437 daniel-mar 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.