Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
migueldeicaza committed Sep 27, 2023
1 parent 966ef3d commit 94a6078
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ let package = Package(
targets: [
.target(
name: "MyFirstGame",
dependencies: ["SwiftGodot"],
dependencies: ["SwiftGodot", .product (name: "SwiftGodotMacros", package: "SwiftGodot")],
swiftSettings: [.unsafeFlags(["-suppress-warnings"])],
linkerSettings: [.unsafeFlags(
["-Xlinker", "-undefined",
Expand All @@ -98,6 +98,9 @@ The next step is to create your source file with the magic on it,
here we declare a spinning cube:

```
import SwiftGodot
import SwiftGodotMacros
@Godot
class SpinningCube: Node3D {
public override func _ready () {
Expand Down

0 comments on commit 94a6078

Please sign in to comment.