diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-11-17 21:20:12 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-29 20:26:58 +0200 |
commit | 2abd27c91c05e124815b77898133e60ec4de16c9 (patch) | |
tree | c51defa321dfdae58e0004a1902d7b57fd1b5ae2 | |
parent | 6e087731535bc938d48c0db09b7cc602c4769e8f (diff) |
Include Visual C++ runtime in the Windows package.
-rw-r--r-- | tools/make_windows_package.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/make_windows_package.sh b/tools/make_windows_package.sh index 3096003..4d4c4c9 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' \ |