forked from swisspol/GCDWebServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
18 lines (15 loc) · 822 Bytes
/
Package.swift
File metadata and controls
18 lines (15 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(name: "GCDWebServer",
platforms: [.macOS(.v10_10),
.iOS(.v9),
.tvOS(.v9),
.watchOS(.v2)],
products: [.library(name: "GCDWebServer",
targets: ["GCDWebServer"])],
targets: [.target(name: "GCDWebServer",
path: "GCDWebServer",
resources: [.process("GCDWebUploader/GCDWebUploader.bundle")], publicHeadersPath: ""
)
])