Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1130 Initial swift package manager support #1193

Merged
merged 15 commits into from
Jan 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
matrix:
run-config:
- { xcode_version: '10.3', simulator: 'name=iPad (5th generation),OS=12.4' }
- { xcode_version: '10.3', simulator: 'name=iPhone X,OS=12.4' }
- { xcode_version: '10.3', simulator: 'name=iPhone 8,OS=12.4' }
- { xcode_version: '11.7', simulator: 'name=iPhone SE (2nd generation),OS=13.7' }
- { xcode_version: '12.2', simulator: 'name=iPhone SE (2nd generation),OS=14.2' }

steps:
- name: Checkout Project
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*.perspectivev3
xcuserdata
project.xcworkspace
.swiftpm
.build

#Ignore textmate build errors
*.tm_build_errors
Expand Down
7 changes: 0 additions & 7 deletions Classes/KIF-Prefix.pch

This file was deleted.

8 changes: 0 additions & 8 deletions Classes/KIF-XCTestPrefix.pch

This file was deleted.

19 changes: 0 additions & 19 deletions Classes/KIF.h

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,6 @@
isa = XCBuildConfiguration;
buildSettings = {
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Calculator/Calculator-Prefix.pch";
INFOPLIST_FILE = "Calculator/Calculator-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.square.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -644,7 +643,6 @@
isa = XCBuildConfiguration;
buildSettings = {
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Calculator/Calculator-Prefix.pch";
INFOPLIST_FILE = "Calculator/Calculator-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.square.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
14 changes: 0 additions & 14 deletions Documentation/Examples/Calculator/Calculator/Calculator-Prefix.pch

This file was deleted.

Loading