Fix resources
This commit is contained in:
parent
e0af36f9a6
commit
daec0db688
1 changed files with 10 additions and 4 deletions
|
|
@ -8,15 +8,21 @@ let package = Package(
|
||||||
defaultLocalization: "en",
|
defaultLocalization: "en",
|
||||||
platforms: [.macOS(.v12), .iOS(.v15)],
|
platforms: [.macOS(.v12), .iOS(.v15)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "KeychainKit", targets: ["KeychainKit"]),
|
.library(name: "KeychainKit", targets: ["KeychainKit"])
|
||||||
],
|
],
|
||||||
dependencies: [
|
dependencies: [
|
||||||
.package(url: "https://github.com/angd-dev/localizable.git", from: "1.0.0"),
|
.package(url: "https://github.com/angd-dev/localizable.git", from: "1.0.0"),
|
||||||
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
|
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
.target(name: "KeychainKit", dependencies: [
|
.target(
|
||||||
.product(name: "Localizable", package: "localizable")
|
name: "KeychainKit",
|
||||||
])
|
dependencies: [
|
||||||
|
.product(name: "Localizable", package: "localizable")
|
||||||
|
],
|
||||||
|
resources: [
|
||||||
|
.process("Resources/Localizable.xcstrings")
|
||||||
|
]
|
||||||
|
)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue