mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
23 lines
679 B
Swift
23 lines
679 B
Swift
// swift-tools-version: 6.0
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "XcodeParse",
|
|
platforms: [.macOS(.v11)],
|
|
dependencies: [
|
|
.package(url: "https://github.com/tuist/XcodeProj.git", exact: "9.0.0"),
|
|
.package(url: "https://github.com/apple/swift-argument-parser.git", exact: "1.5.0"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "XcodeParse",
|
|
dependencies: [
|
|
"XcodeProj",
|
|
.product(name: "ArgumentParser", package: "swift-argument-parser")
|
|
]
|
|
),
|
|
]
|
|
)
|