-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
24 lines (21 loc) · 1007 Bytes
/
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
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "Aether",
products: [
.library(name: "Aether",targets: ["Aether"])
],
dependencies: [
.package(url: "https://github.com/aestesis/Zlib.git", from:"0.1.6"),
.package(url: "https://github.com/aestesis/Cpng", .branch("master")),
.package(url: "https://github.com/aestesis/CPango.git", .branch("master")),
.package(url: "https://github.com/aestesis/CFreeType.git", .branch("master")),
.package(url: "https://github.com/aestesis/libtess.git", from:"1.0.4"),
.package(url: "https://github.com/IBM-Swift/SwiftyJSON.git", from:"17.0.0"),
.package(url: "https://github.com/aestesis/Cairo.git", .branch("master")),
.package(url: "https://github.com/aestesis/Uridium.git", .branch("master"))
],
targets: [
.target(name: "Aether",dependencies: ["Uridium","Cairo","SwiftyJSON","libtess","Cpng","CPango","CFreeType","Zlib"])
]
)