-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
56 lines (54 loc) · 2.35 KB
/
Package.swift
File metadata and controls
56 lines (54 loc) · 2.35 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// swift-tools-version:5.7
//
// Package.swift
// DoubleNode Swift Framework (DNSFramework) - DNSProtocols
//
// Created by Darren Ehlers.
// Copyright © 2025 - 2016 DoubleNode.com. All rights reserved.
//
import PackageDescription
let package = Package(
name: "DNSProtocols",
platforms: [
.iOS(.v16),
.tvOS(.v16),
.macCatalyst(.v16),
.macOS(.v13),
.watchOS(.v9),
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "DNSProtocols",
type: .static,
targets: ["DNSProtocols"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.10.2"),
.package(url: "https://github.com/DoubleNode/DNSCore.git", .upToNextMajor(from: "1.12.1")),
.package(url: "https://github.com/DoubleNode/DNSCoreThreading.git", .upToNextMajor(from: "1.12.1")),
.package(url: "https://github.com/DoubleNode/DNSDataContracts.git", .upToNextMajor(from: "1.12.3")),
.package(url: "https://github.com/DoubleNode/DNSDataObjects.git", .upToNextMajor(from: "1.12.4")),
.package(url: "https://github.com/DoubleNode/DNSDataUIObjects.git", .upToNextMajor(from: "1.12.5")),
.package(url: "https://github.com/DoubleNode/DNSError.git", .upToNextMajor(from: "1.12.0")),
// .package(path: "../DNSCore"),
// .package(path: "../DNSCoreThreading"),
// .package(path: "../DNSDataContracts"),
// .package(path: "../DNSDataObjects"),
// .package(path: "../DNSDataUIObjects"),
// .package(path: "../DNSError"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "DNSProtocols",
dependencies: ["Alamofire", "DNSCore", "DNSCoreThreading", "DNSDataContracts", "DNSDataObjects",
"DNSDataUIObjects", "DNSError"]),
.testTarget(
name: "DNSProtocolsTests",
dependencies: ["DNSProtocols"]),
],
swiftLanguageVersions: [.v5]
)