Skip to content

Commit 6759aad

Browse files
committed
Run desired unit tests instead of only Mac.
1 parent affa038 commit 6759aad

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
BUILD_TOOL = xcodebuild
2-
BUILD_SCHEME = SQLite Mac
3-
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)"
2+
ifeq ($(BUILD_SCHEME),SQLite iOS)
3+
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)" -sdk iphonesimulator
4+
else
5+
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)"
6+
endif
47

58
XCPRETTY := $(shell command -v xcpretty)
69
SWIFTCOV := $(shell command -v swiftcov)

0 commit comments

Comments
 (0)