Skip to content

Commit 62ea985

Browse files
authored
Merge pull request #459 from nickmshelley/ios-tests
Run desired unit tests instead of only Mac.
2 parents affa038 + 6759aad commit 62ea985

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)