forked from roberthein/Looping
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (24 loc) · 729 Bytes
/
Package.swift
File metadata and controls
25 lines (24 loc) · 729 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
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "Looping",
platforms: [
.iOS(.v11),
.macOS(.v10_15)
],
products: [
.library(name: "Looping", targets: ["Looping"]),
.library(name: "LoopingWebP", targets: ["LoopingWebP"])
],
targets: [
.target(name: "Looping", dependencies: [], path: "Sources/Looping"),
.target(name: "LoopingWebP", dependencies: ["Looping", "WebP"], path: "Sources/LoopingWebP"),
.target(
name: "WebP",
path: "Sources/WebP/libwebp/",
sources: ["src"],
publicHeadersPath: "src/webp",
cSettings: [.headerSearchPath(".")]
)
]
)