mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
22 lines
469 B
Swift
22 lines
469 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "StackAuthMacOS",
|
|
platforms: [
|
|
.macOS(.v14)
|
|
],
|
|
dependencies: [
|
|
.package(name: "StackAuth", path: "../..")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "StackAuthMacOS",
|
|
dependencies: [
|
|
.product(name: "StackAuth", package: "StackAuth")
|
|
],
|
|
path: "StackAuthMacOS"
|
|
)
|
|
]
|
|
)
|