package update

This commit is contained in:
Mike Renoir 2022-02-23 10:47:49 +04:00
parent 3ddf3518c5
commit 092361f36a

View File

@ -15,13 +15,16 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(name: "SSignalKit", path: "../../submodules/telegram-ios/submodules/SSignalKit"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "ManagedFile",
dependencies: [],
dependencies: [
.product(name: "SwiftSignalKit", package: "SSignalKit", condition: nil),
],
path: ".",
exclude: ["BUILD"]),
]