diff options
author | Craig Tiller <ctiller@google.com> | 2015-08-31 16:07:20 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-08-31 16:07:20 -0700 |
commit | 3b245fe388c31c85a18f68ccab8dd343bf08eae3 (patch) | |
tree | 5e57abd2bf909aa10cca6c481ab071d04e78af9a /templates/vsprojects | |
parent | e0b8a42552b0c891f054c4358a8a6fac2529be9d (diff) |
C tests dont need protobuf
Diffstat (limited to 'templates/vsprojects')
-rw-r--r-- | templates/vsprojects/vcxproj_defs.include | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/vsprojects/vcxproj_defs.include b/templates/vsprojects/vcxproj_defs.include index 7057d11143..b371e95225 100644 --- a/templates/vsprojects/vcxproj_defs.include +++ b/templates/vsprojects/vcxproj_defs.include @@ -19,7 +19,9 @@ if target.build == 'protoc': props.extend(['protoc', 'protobuf']) else: - props.extend(['winsock', 'protobuf', 'zlib', 'openssl']) + if target.language == 'c++': + props.extend(['protobuf']) + props.extend(['winsock', 'zlib', 'openssl']) else: props.extend(['winsock']) props.extend(['global']) |