-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added Package.swift, minimum version is now ios 11
- Loading branch information
1 parent
c2a84b2
commit 9e770e4
Showing
9 changed files
with
72 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// swift-tools-version:5.0 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "SCNPath", | ||
platforms: [ | ||
.iOS(.v11) | ||
], | ||
products: [ | ||
.library( | ||
name: "SCNPath", | ||
targets: ["SCNPath"]), | ||
], | ||
targets: [ | ||
// No tests created just yet. | ||
.target( | ||
name: "SCNPath", | ||
dependencies: []), | ||
.testTarget( | ||
name: "SCNPathTests", | ||
dependencies: ["SCNPath"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SCNPath" | ||
s.version = "1.1.0" | ||
s.version = "1.2.0" | ||
s.summary = "SCNPath lets you create paths for any purpose in AR using just centre points for your path." | ||
s.homepage = "https://github.com/maxxfrazer/ARKit-SCNPath" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Max Cobb" => "maxxc@mac.com" } | ||
s.source = { :git => "https://github.com/maxxfrazer/ARKit-SCNPath.git", :tag => "#{s.version}" } | ||
s.platform = :ios, '12.0' | ||
s.platform = :ios, '11.0' | ||
s.swift_version = '5.0' | ||
s.frameworks = 'SceneKit' | ||
s.source_files = "SCNPath/*.swift", ".swiftlint.yml" | ||
s.source_files = "Sources/SCNPath/*.swift", ".swiftlint.yml" | ||
end |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import XCTest | ||
@testable import ARKit_SCNPath | ||
|
||
final class ARKit_SCNPathTests: XCTestCase { | ||
func testExample() { | ||
// This is an example of a functional test case. | ||
// Use XCTAssert and related functions to verify your tests produce the correct | ||
// results. | ||
} | ||
|
||
static var allTests = [ | ||
("testExample", testExample), | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import XCTest | ||
|
||
#if !canImport(ObjectiveC) | ||
public func allTests() -> [XCTestCaseEntry] { | ||
return [ | ||
testCase(ARKit_SCNPathTests.allTests), | ||
] | ||
} | ||
#endif |