mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-23 16:16:08 +02:00
db53826061
- Migrated project to latest Telegram iOS base (v12.3.2+) - Fixed circular dependency between GhostModeManager and MiscSettingsManager - Fixed multiple Bazel build configuration errors (select() default conditions) - Fixed duplicate type definitions in PeerInfoScreen - Fixed swiftmodule directory resolution in build scripts - Added Ghostgram Settings tab in main Settings menu with all 5 features - Cleared sensitive credentials from config.json (template-only now) - Excluded bazel-cache from version control
27 lines
724 B
Swift
27 lines
724 B
Swift
// swift-tools-version:5.8
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "MakeProject",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(name: "MakeProject", targets: ["MakeProject"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/tuist/XcodeProj.git", from: "8.15.0"),
|
|
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "MakeProject",
|
|
dependencies: [
|
|
.product(name: "XcodeProj", package: "XcodeProj"),
|
|
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
|
]
|
|
)
|
|
]
|
|
)
|