Files
LCEssentials/Package.swift

34 lines
946 B
Swift
Raw Permalink Normal View History

2025-03-23 00:27:49 -03:00
// swift-tools-version: 6.0
import PackageDescription
2025-07-29 11:59:11 -03:00
import Foundation
let isLocalDevelopment = FileManager.default.fileExists(atPath: "../LCECryptoKit/PrivateLib/LCECryptoKitBinary")
2025-03-23 00:27:49 -03:00
let package = Package(
name: "LCEssentials",
2025-07-29 11:59:11 -03:00
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6)
],
2025-03-23 00:27:49 -03:00
products: [
.library(
name: "LCEssentials",
targets: ["LCEssentials"]),
],
2025-07-05 12:34:25 -03:00
dependencies: [
.package(
2025-07-29 11:59:11 -03:00
url: isLocalDevelopment ?
"../LCECryptoKit/PrivateLib/LCECryptoKitBinary" :
2025-08-25 16:52:42 -03:00
"https://60c260c85d3a2fe840411b0ff98f521b5eca3c56@git.loverde.com.br/Loverde-Company-LTDA/LCECryptoKitBinary.git",
2025-10-07 20:21:28 -03:00
exact: "1.0.2"
2025-07-05 12:34:25 -03:00
)
],
2025-03-23 00:27:49 -03:00
targets: [
.target(
2025-07-05 12:34:25 -03:00
name: "LCEssentials",
2025-07-29 13:46:38 -03:00
dependencies: [.product(name: "LCECryptoKit", package: "lcecryptokitbinary")]),
2025-03-23 00:27:49 -03:00
]
)