-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
54 lines (52 loc) · 2.1 KB
/
Package.swift
File metadata and controls
54 lines (52 loc) · 2.1 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
// swift-tools-version:5.7
//
// Package.swift
// DoubleNode Swift Framework (DNSFramework) - DNSDataObjects
//
// Created by Darren Ehlers.
// Copyright © 2025 - 2016 DoubleNode.com. All rights reserved.
//
import PackageDescription
let package = Package(
name: "DNSDataObjects",
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: "DNSDataObjects",
type: .static,
targets: ["DNSDataObjects"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.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.1")),
.package(url: "https://github.com/DoubleNode/DNSDataTypes.git", .upToNextMajor(from: "1.12.2")),
.package(url: "https://github.com/DoubleNode/DNSError.git", .upToNextMajor(from: "1.12.0")),
// .package(path: "../DNSCore"),
// .package(path: "../DNSCoreThreading"),
// .package(path: "../DNSDataContracts"),
// .package(path: "../DNSDataTypes"),
// .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: "DNSDataObjects",
dependencies: ["DNSCore", "DNSCoreThreading", "DNSDataContracts", "DNSDataTypes", "DNSError"]
),
.testTarget(
name: "DNSDataObjectsTests",
dependencies: ["DNSDataObjects"],
exclude: ["README.md"]),
],
swiftLanguageVersions: [.v5]
)