Updates to handle use of cmake for Windows builds.
This commit is contained in:
parent
e2acd85425
commit
09f3f4eec3
3 changed files with 5 additions and 8 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -77,8 +77,7 @@ java/target
|
|||
javanano/target
|
||||
|
||||
# Windows native output.
|
||||
vsprojects/Debug
|
||||
vsprojects/Release
|
||||
cmake/build
|
||||
|
||||
# NuGet packages: we want the repository configuration, but not the
|
||||
# packages themselves.
|
||||
|
|
|
@ -16,7 +16,6 @@ set(libprotoc_files
|
|||
${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_string_field.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_enum.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_enum_field.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_extension.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_field_base.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_generator.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_helpers.cc
|
||||
|
@ -28,7 +27,6 @@ set(libprotoc_files
|
|||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_umbrella_class.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/csharp/csharp_writer.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/java/java_context.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/java/java_doc_comment.cc
|
||||
${protobuf_source_dir}/src/google/protobuf/compiler/java/java_enum.cc
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue