We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eadbd7b commit 735a10eCopy full SHA for 735a10e
example2/Makefile
@@ -1,21 +1,27 @@
1
-export PROTOC=${HOME}/protoc/bin/protoc
2
-
3
#
4
# Build
5
6
7
.PHONY: build
8
build:
+ifeq ($(OS),Windows_NT)
+ @echo "Skipping build on Windows"
9
+else
10
cargo build
11
+endif
12
13
.PHONY: build-examples
14
build-examples: build
15
16
+ @echo "Skipping build-examples on Windows"
17
18
cargo build --example server
19
cargo build --example client
20
cargo build --example async-server
21
cargo build --example async-client
22
cargo build --example async-stream-server
23
cargo build --example async-stream-client
24
25
26
.PHONY: deps
27
deps:
0 commit comments