Include MSVCR90.DLL also.
[apps/agl-service-can-low-level.git] / tools / make_windows_package.sh
1 #!/bin/bash
2
3 # Run this script in the top nanopb directory to create a binary package
4 # for Windows users. This script is designed to run under MingW/MSYS bash
5 # and requires the following tools: git, make, zip, unix2dos
6
7 set -e
8 set -x
9
10 VERSION=`git describe --always`
11 DEST=dist/$VERSION
12
13 rm -rf $DEST
14 mkdir -p $DEST
15
16 # Export the files from newest commit
17 git archive HEAD | tar x -C $DEST
18
19 # Rebuild the Python .proto files
20 make -BC $DEST/generator/proto
21
22 # Make the nanopb generator available as a protoc plugin
23 cp $DEST/generator/nanopb_generator.py $DEST/generator/protoc-gen-nanopb.py
24
25 # Package the Python libraries
26 ( cd $DEST/generator; bbfreeze nanopb_generator.py protoc-gen-nanopb.py )
27 mv $DEST/generator/dist $DEST/generator-bin
28
29 # The python interpreter requires MSVCR90.dll.
30 # FIXME: Find a way around hardcoding this path
31 cp /c/windows/winsxs/x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4974_none_50940634bcb759cb/MSVCR90.DLL $DEST/generator-bin/
32
33 # Remove temp file
34 rm $DEST/generator/protoc-gen-nanopb.py
35
36 # Package the protoc compiler
37 cp `which protoc.exe` $DEST/generator-bin/
38 cp `which MSVCR100.DLL` $DEST/generator-bin/
39 cp `which MSVCP100.DLL` $DEST/generator-bin/
40
41 # Convert line breaks for convenience
42 find $DEST -name '*.c' -o -name '*.h' -o -name '*.txt' \
43     -o -name '*.proto' -o -name '*.py' -o -name '*.options' \
44     -exec unix2dos '{}' \;
45
46 # Zip it all up
47 ( cd dist; zip -r $VERSION.zip $VERSION )