Skip to content

Commit

Permalink
fix: release build setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed Jun 7, 2024
1 parent 87adbd7 commit 099a984
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions FuegoOnAppleSilicon/SwiftBridge/FuegoBridge.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Foundation
import FuegoCBridge

public enum FuegoBridgeError: Error {
case notStarted
Expand Down
8 changes: 4 additions & 4 deletions node/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ let package = Package(
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "FuegoOnAppleSilicon",
targets: ["FuegoOnAppleSilicon", "FuegoCBridge", "FuegoXCFramework"]
targets: ["FuegoOnAppleSilicon"]
),
],
targets: [
Expand All @@ -60,12 +60,12 @@ let package = Package(
dependencies: ["FuegoXCFramework"],
path: "FuegoOnAppleSilicon/CBridge",
publicHeadersPath: "FuegoOnAppleSilicon/CBridge/include"
)
),
.target(
name: "FuegoOnAppleSilicon",
dependencies: ["FuegoXCFramework", "FuegoCBridge"],
dependencies: ["FuegoCBridge"],
path: "FuegoOnAppleSilicon/SwiftBridge"
)
),
]
)
`)
Expand Down

0 comments on commit 099a984

Please sign in to comment.