Skip to content

Commit 04a6921

Browse files
committed
Updated swift tools version
1 parent 53b185e commit 04a6921

8 files changed

+20
-3
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.DS_Store
2+
*.lock
3+
*.resolved
24
/build
35
/.build
46
/Packages

.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1
1+
4.0-DEVELOPMENT-SNAPSHOT-2017-06-11-a

Package.swift

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
1-
// swift-tools-version:3.1
1+
// swift-tools-version:4.0
22

33
import PackageDescription
44

55
let package = Package(
66
name: "Venice",
7+
products: [
8+
.library(
9+
name: "Venice",
10+
type: .dynamic,
11+
targets: [
12+
"Venice"
13+
]
14+
)
15+
],
716
dependencies: [
8-
.Package(url: "https://github.com/Zewo/CLibdill.git", majorVersion: 1)
17+
.package(url: "https://github.com/Zewo/CLibdill.git", .branch("swift-4"))
18+
],
19+
targets: [
20+
.target(
21+
name: "Venice",
22+
dependencies: []
23+
),
924
]
1025
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)