mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
9c37d76381
* feat: improve macOS phase 1 support * fix: address macOS phase 1 review comments * fix: address macOS PR review feedback * chore: remove unused apple log alias * fix: allow mocked macOS helper outside darwin
19 lines
356 B
Swift
19 lines
356 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "agent-device-macos-helper",
|
|
platforms: [.macOS(.v13)],
|
|
products: [
|
|
.executable(
|
|
name: "agent-device-macos-helper",
|
|
targets: ["AgentDeviceMacOSHelper"]
|
|
),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AgentDeviceMacOSHelper"
|
|
),
|
|
]
|
|
)
|