forked from attaswift/BigInt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
33 lines (31 loc) · 810 Bytes
/
Package.swift
File metadata and controls
33 lines (31 loc) · 810 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
// swift-tools-version:5.9
//
// Package.swift
// BigInt
//
// Created by Károly Lőrentey on 2016-01-12.
// Copyright © 2016-2017 Károly Lőrentey.
//
import PackageDescription
let package = Package(
name: "BigInt",
platforms: [
.macOS(.v10_13),
.iOS(.v12),
.tvOS(.v12),
.watchOS(.v4),
.macCatalyst(.v13),
.visionOS(.v1),
],
products: [
.library(name: "BigInt", targets: ["BigInt"])
],
targets: [
.target(
name: "BigInt", path: "Sources",
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]),
.testTarget(
name: "BigIntTests", dependencies: ["BigInt"], path: "Tests",
swiftSettings: [.enableExperimentalFeature("StrictConcurrency")]),
]
)