Skip to content
Snippets Groups Projects
Commit d5904820 authored by Craig Tiller's avatar Craig Tiller
Browse files

Windows tweak

parent 6c99868b
No related branches found
No related tags found
No related merge requests found
......@@ -281,7 +281,10 @@ class CSharpLanguage(object):
def make_targets(self):
# For Windows, this target doesn't really build anything,
# everything is build by buildall script later.
return ['grpc_csharp_ext']
if self.platform == 'windows':
return []
else:
return ['grpc_csharp_ext']
def build_steps(self):
if self.platform == 'windows':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment