-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
42 lines (40 loc) · 1.19 KB
/
Package.swift
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
// swift-tools-version:5.2
//===----------------------------------------------------------------------===//
//
// This source file is part of the Standards open source project
//
// Copyright (c) Stairtree GmbH
// Licensed under the MIT license
//
// See LICENSE.txt for license information
//
// SPDX-License-Identifier: MIT
//
//===----------------------------------------------------------------------===//
import PackageDescription
let package = Package(
name: "Standards",
products: [
.library(
name: "Standards",
targets: ["Standards"]),
.executable(
name: "update",
targets: ["update"])
],
dependencies: [
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.0.0"),
.package(url: "https://github.com/MaxDesiatov/XMLCoder.git", from: "0.12.0"),
],
targets: [
.target(
name: "Standards",
dependencies: []),
.target(
name: "update",
dependencies: [.byName(name: "SwiftSoup"), .byName(name: "XMLCoder")]),
.testTarget(
name: "StandardsTests",
dependencies: [.byName(name: "Standards")]),
]
)