Home | History | Annotate | Download | only in csharp

Lines Matching refs:protoc

3 # You first need to make sure protoc has been built (see instructions on
4 # building protoc in root of this repository)
11 # Protocol buffer compiler to use. If the PROTOC variable is set,
14 if [ -z "$PROTOC" ]; then
16 if [ -x cmake/build/Debug/protoc.exe ]; then
17 PROTOC=cmake/build/Debug/protoc.exe
18 elif [ -x cmake/build/Release/protoc.exe ]; then
19 PROTOC=cmake/build/Release/protoc.exe
20 elif [ -x src/protoc ]; then
21 PROTOC=src/protoc
29 $PROTOC -Isrc --csharp_out=csharp/src/Google.Protobuf \
44 $PROTOC -Isrc --csharp_out=csharp/src/Google.Protobuf.Test \
53 $PROTOC -Icsharp/protos --csharp_out=csharp/src/Google.Protobuf.Test \
58 $PROTOC -Iexamples --csharp_out=csharp/src/AddressBook \
61 $PROTOC -Iconformance -Isrc --csharp_out=csharp/src/Google.Protobuf.Conformance \