mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
33 lines
795 B
Swift
33 lines
795 B
Swift
import Foundation
|
|
import ProjectSpec
|
|
import SwiftCLI
|
|
|
|
public class XcodeGenCLI {
|
|
let cli: CLI
|
|
|
|
public init(version: Version) {
|
|
let generateCommand = GenerateCommand(version: version)
|
|
|
|
cli = CLI(
|
|
name: "xcodegen",
|
|
version: version.string,
|
|
description: "Generates Xcode projects",
|
|
commands: [
|
|
generateCommand,
|
|
DumpCommand(version: version)
|
|
]
|
|
)
|
|
cli.parser.routeBehavior = .searchWithFallback(generateCommand)
|
|
}
|
|
|
|
public func execute(arguments: [String]? = nil) {
|
|
let status: Int32
|
|
if let arguments = arguments {
|
|
status = cli.go(with: arguments)
|
|
} else {
|
|
status = cli.go()
|
|
}
|
|
exit(status)
|
|
}
|
|
}
|