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(
.library(name: "Material", targets: ["Material"])
],
dependencies: [
.package(url: "https://github.com/CosmicMind/Motion.git"),
.package(url: "https://github.com/CosmicMind/Motion.git", .upToNextMajor(from: "3.1.0")),
],
targets: [
.target(
name: "Material",
dependencies: ["Motion"],
path: "Sources"
path: "Sources",
exclude: ["Frameworks"]
)
]
)
......@@ -23,6 +23,8 @@
* THE SOFTWARE.
*/
import Foundation
@objc(ShapePreset)
public enum ShapePreset: Int {
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