about summary refs log tree commit diff stats
path: root/swift/life/Package.swift
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-06-19 11:29:22 -0400
committerelioat <elioat@tilde.institute>2024-06-19 11:29:22 -0400
commit1e98cedbafdfefb1a9e94c31f0d0bb3cb1f3866e (patch)
tree2e6af225fc367331acad100577d25e029650fdda /swift/life/Package.swift
parenta1f63717e453173e5d2c3f85a8692b5202bec918 (diff)
downloadtour-1e98cedbafdfefb1a9e94c31f0d0bb3cb1f3866e.tar.gz
*
Diffstat (limited to 'swift/life/Package.swift')
-rw-r--r--swift/life/Package.swift14
1 files changed, 14 insertions, 0 deletions
diff --git a/swift/life/Package.swift b/swift/life/Package.swift
new file mode 100644
index 0000000..e1f6d6e
--- /dev/null
+++ b/swift/life/Package.swift
@@ -0,0 +1,14 @@
+// swift-tools-version: 5.10
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+    name: "life",
+    targets: [
+        // Targets are the basic building blocks of a package, defining a module or a test suite.
+        // Targets can depend on other targets in this package and products from dependencies.
+        .executableTarget(
+            name: "life"),
+    ]
+)