diff options
author | David Garcia Quintas <dgq@google.com> | 2018-06-11 15:52:42 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2018-06-11 15:52:42 -0700 |
commit | 32c04931db9ef88159a59c18b47288c445faa00d (patch) | |
tree | e29c48dde7d51a06f2d02a26b8576b7b63055079 /templates/CMakeLists.txt.template | |
parent | dd8bc8cfb468807c5b4576aa8816b0cc0c7aeef7 (diff) | |
parent | b12b813ed8cba02ee56689034069aaae2e455a3f (diff) |
Merge branch 'master' of github.com:grpc/grpc into nanopb_build_cleanup
Diffstat (limited to 'templates/CMakeLists.txt.template')
-rw-r--r-- | templates/CMakeLists.txt.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/CMakeLists.txt.template b/templates/CMakeLists.txt.template index 689831534b..a7f59e15a7 100644 --- a/templates/CMakeLists.txt.template +++ b/templates/CMakeLists.txt.template @@ -35,7 +35,7 @@ def get_deps(target_dict): deps = [] - if target_dict.get('baselib', False): + if target_dict.get('baselib', False) or target_dict['name'] == 'address_sorting': deps.append("${_gRPC_BASELIB_LIBRARIES}") if target_dict.get('build', None) in ['protoc']: deps.append("${_gRPC_PROTOBUF_PROTOC_LIBRARIES}") |