Commit b501ecfb by Daniel Jonathan Committed by GitHub

Merge pull request #1270 from goodocy/development

Fix to Swift Package Manager missing argument
parents d2486790 682e31cd
...@@ -8,13 +8,14 @@ let package = Package( ...@@ -8,13 +8,14 @@ let package = Package(
.library(name: "Material", targets: ["Material"]) .library(name: "Material", targets: ["Material"])
], ],
dependencies: [ dependencies: [
.package(url: "https://github.com/CosmicMind/Motion.git"), .package(url: "https://github.com/CosmicMind/Motion.git", .upToNextMajor(from: "3.1.0")),
], ],
targets: [ targets: [
.target( .target(
name: "Material", name: "Material",
dependencies: ["Motion"], dependencies: ["Motion"],
path: "Sources" path: "Sources",
exclude: ["Frameworks"]
) )
] ]
) )
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
import Foundation
@objc(ShapePreset) @objc(ShapePreset)
public enum ShapePreset: Int { public enum ShapePreset: Int {
case none case none
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment