forked from tristanhimmelman/ObjectMapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
17 lines (15 loc) · 804 Bytes
/
Package.swift
File metadata and controls
17 lines (15 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// swift-tools-version:5.5
import PackageDescription
let package = Package(name: "ObjectMapper",
platforms: [.macOS(.v12),
.iOS(.v13),
.tvOS(.v9),
.watchOS(.v2)],
products: [.library(name: "ObjectMapper",
targets: ["ObjectMapper"])],
targets: [.target(name: "ObjectMapper",
path: "Sources"),
.testTarget(name: "ObjectMapperTests",
dependencies: ["ObjectMapper"],
path: "Tests")],
swiftLanguageVersions: [.v5])