Skip to content

Commit

Permalink
fix mac build error
Browse files Browse the repository at this point in the history
  • Loading branch information
paradiseduo authored Oct 16, 2023
1 parent 6534265 commit 82bc7b5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
// swift-tools-version:5.6
// swift-tools-version:5.3

import PackageDescription

let package = Package(
name: "appdecrypt",
products: [
.executable(name: "appdecrypt", targets: ["appdecrypt"])
.executable(
name: "appdecrypt",
targets: ["appdecrypt"]
)
],
targets: [
.executableTarget(name: "appdecrypt", dependencies: []),
.target(name: "appdecrypt")
]
)

0 comments on commit 82bc7b5

Please sign in to comment.