summaryrefslogtreecommitdiffstats
path: root/tools/make_windows_package.sh
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-11-17 21:20:12 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-12-29 20:26:58 +0200
commit2abd27c91c05e124815b77898133e60ec4de16c9 (patch)
treec51defa321dfdae58e0004a1902d7b57fd1b5ae2 /tools/make_windows_package.sh
parent6e087731535bc938d48c0db09b7cc602c4769e8f (diff)
Include Visual C++ runtime in the Windows package.
Diffstat (limited to 'tools/make_windows_package.sh')
-rw-r--r--tools/make_windows_package.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/make_windows_package.sh b/tools/make_windows_package.sh
index 3096003b..4d4c4c94 100644
--- a/tools/make_windows_package.sh
+++ b/tools/make_windows_package.sh
@@ -30,7 +30,9 @@ mv $DEST/generator/dist $DEST/generator-bin
rm $DEST/generator/protoc-gen-nanopb.py
# Package the protoc compiler
-cp `which protoc`.exe $DEST/generator-bin/
+cp `which protoc.exe` $DEST/generator-bin/
+cp `which MSVCR100.DLL` $DEST/generator-bin/
+cp `which MSVCP100.DLL` $DEST/generator-bin/
# Convert line breaks for convenience
find $DEST -name '*.c' -o -name '*.h' -o -name '*.txt' \