aboutsummaryrefslogtreecommitdiff
path: root/csharp/generate_protos.sh
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2015-06-17 15:16:14 +0100
committerJon Skeet <skeet@pobox.com>2015-06-17 15:16:14 +0100
commit09f3f4eec3a7e6b2f58b47eb007bcb24dfdbf7a0 (patch)
treed728ec674e61319f43b2516fc86fa7551622dcef /csharp/generate_protos.sh
parente2acd854250b449a3fdeef2ad52402c4c5d78259 (diff)
downloadprotobuf-09f3f4eec3a7e6b2f58b47eb007bcb24dfdbf7a0.tar.gz
protobuf-09f3f4eec3a7e6b2f58b47eb007bcb24dfdbf7a0.tar.bz2
protobuf-09f3f4eec3a7e6b2f58b47eb007bcb24dfdbf7a0.zip
Updates to handle use of cmake for Windows builds.
Diffstat (limited to 'csharp/generate_protos.sh')
-rwxr-xr-xcsharp/generate_protos.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/csharp/generate_protos.sh b/csharp/generate_protos.sh
index d239fcb2..60bc2813 100755
--- a/csharp/generate_protos.sh
+++ b/csharp/generate_protos.sh
@@ -23,10 +23,10 @@ cd $(dirname $0)/..
# Windows and Unix.
if [ -z "$PROTOC" ]; then
# TODO(jonskeet): Use an array and a for loop instead?
- if [ -x vsprojects/Debug/protoc.exe ]; then
- PROTOC=vsprojects/Debug/protoc.exe
- elif [ -x vsprojects/Release/protoc.exe ]; then
- PROTOC=vsprojects/Release/protoc.exe
+ if [ -x cmake/build/Debug/protoc.exe ]; then
+ PROTOC=cmake/build/Debug/protoc.exe
+ elif [ -x cmake/build/Release/protoc.exe ]; then
+ PROTOC=cmake/build/Release/protoc.exe
elif [ -x src/protoc ]; then
PROTOC=src/protoc
else