forked from PureSwift/Cacao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
40 lines (39 loc) · 976 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// swift-tools-version: 5.6
import PackageDescription
let package = Package(
name: "Cacao",
products: [
.library(name: "Cacao", targets: ["Cacao"]),
.executable(name: "CacaoDemo", targets: ["CacaoDemo"]),
],
dependencies: [
.package(
url: "https://github.com/austintatiousness/Silica.git",
.branch("master")
),
.package(
url: "https://github.com/austintatiousness/Cairo.git",
.branch("master")
),
.package(
url: "https://github.com/austintatiousness/SDL.git",
.branch("master")
)
],
targets: [
.target(
name: "Cacao",
dependencies: [
"Silica",
"Cairo",
"SDL"
]
),
.executableTarget(
name: "CacaoDemo",
dependencies: [
"Cacao"
]
),
]
)