-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
35 lines (33 loc) · 975 Bytes
/
Package.swift
File metadata and controls
35 lines (33 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// swift-tools-version:5.9
import PackageDescription
// The library targets the lowest platforms where URLSession async/await is
// available. The test suite is XCTest-based, which ships with Xcode. If you
// do not have Xcode installed, `swift test` will not be able to compile the
// test target on macOS because XCTest is not part of the macOS Command Line
// Tools or the swift.org toolchain.
let package = Package(
name: "IPGeolocation",
platforms: [
.macOS(.v12),
.iOS(.v15),
.tvOS(.v15),
.watchOS(.v8),
],
products: [
.library(
name: "IPGeolocation",
targets: ["IPGeolocation"]
),
],
targets: [
.target(
name: "IPGeolocation",
path: "Sources/IPGeolocation"
),
.testTarget(
name: "IPGeolocationTests",
dependencies: ["IPGeolocation"],
path: "Tests/IPGeolocationTests"
),
]
)