Skip to content

Commit 1e93565

Browse files
committedMar 12, 2021
Add executable config
1 parent 520520e commit 1e93565

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎Package.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77
name: "SwiftLisp",
88

99
products: [
10-
// .executable(name: "slisp", targets: ["slisp"]),
10+
.executable(name: "slisp", targets: ["slisp"]),
1111
.library(name: "SwiftLisp", targets: ["SwiftLisp"])
1212
],
1313

@@ -18,9 +18,9 @@ let package = Package(
1818
targets: [
1919
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2020
// Targets can depend on other targets in this package, and on products in packages this package depends on.
21-
// .target(
22-
// name: "slisp",
23-
// dependencies: ["SwiftLisp"]),
21+
.target(
22+
name: "slisp",
23+
dependencies: ["SwiftLisp"]),
2424
.target(
2525
name: "SwiftLisp",
2626
dependencies: [],

0 commit comments

Comments
 (0)
Please sign in to comment.