You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,16 @@ else
6
6
endif
7
7
8
8
all:
9
-
swift build -v $(CFLAGS)
9
+
swift build $(CFLAGS)
10
10
cp .build/debug/protoc-gen-swift .
11
11
cp .build/debug/protoc-gen-swiftgrpc .
12
12
13
13
project:
14
-
swift package -v $(CFLAGS) generate-xcodeproj
14
+
swift package $(CFLAGS) generate-xcodeproj
15
15
@-ruby fix-project-settings.rb ||echo"Consider running 'sudo gem install xcodeproj' to automatically set correct indentation settings for the generated project."
16
16
17
17
test: all
18
-
swift test-v $(CFLAGS)
18
+
swift test$(CFLAGS)
19
19
20
20
test-echo: all
21
21
cp .build/debug/Echo .
@@ -28,7 +28,7 @@ test-echo: all
28
28
diff -u test.out Sources/Examples/Echo/test.gold
29
29
30
30
test-plugin:
31
-
swift build -v $(CFLAGS) --product protoc-gen-swiftgrpc
31
+
swift build $(CFLAGS) --product protoc-gen-swiftgrpc
0 commit comments