Skip to content

Commit 3881d68

Browse files
committed
Updated for latest Igis version
* Updated to Igis 1.4.0 * Updated to swift-tools-version:5.7 * Removed .dir-locals.el from repository * Added newly required Swift Atomics
1 parent 973d0e5 commit 3881d68

4 files changed

Lines changed: 7 additions & 9 deletions

File tree

.dir-locals.el

Lines changed: 0 additions & 5 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
/*.xcodeproj
55
Package.resolved
66
*~
7+
.dir-locals.el

Package.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
// swift-tools-version:4.2
1+
// swift-tools-version:5.7
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
55

66
let package = Package(
77
name: "IgisShell",
88
dependencies: [
9+
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.2")
910
],
1011
targets: [
1112
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
1213
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
13-
.target(
14-
name: "IgisShell"),
14+
.executableTarget(
15+
name: "IgisShell",
16+
dependencies: [.product(name: "Atomics", package: "swift-atomics")])
1517
]
1618
)

dylib.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Igis 1.1.5
1+
Igis 1.4.0

0 commit comments

Comments
 (0)