Skip to content

Commit

Permalink
Use package scheme in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
defagos committed Jul 27, 2020
1 parent 617e19f commit f362dff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ all: test-ios test-tvos
.PHONY: test-ios
test-ios:
@echo "Running iOS unit tests..."
@xcodebuild test -scheme SRGLogger -destination 'platform=iOS Simulator,name=iPhone 11' 2> /dev/null
@xcodebuild test -scheme SRGLogger-Package -destination 'platform=iOS Simulator,name=iPhone 11' 2> /dev/null
@echo "... done.\n"

.PHONY: test-tvos
test-tvos:
@echo "Running tvOS unit tests..."
@xcodebuild test -scheme SRGLogger -destination 'platform=tvOS Simulator,name=Apple TV' 2> /dev/null
@xcodebuild test -scheme SRGLogger-Package -destination 'platform=tvOS Simulator,name=Apple TV' 2> /dev/null
@echo "... done.\n"

.PHONY: help
Expand Down

0 comments on commit f362dff

Please sign in to comment.