30 lines
864 B
Swift
30 lines
864 B
Swift
//
|
|
// File.swift
|
|
//
|
|
//
|
|
// Created by Thibaut Schmitt on 10/01/2022.
|
|
//
|
|
|
|
import Foundation
|
|
import ArgumentParser
|
|
|
|
struct TwineOptions: ParsableArguments {
|
|
@Flag(name: .customShort("f"), help: "Should force generation")
|
|
var forceGeneration = false
|
|
|
|
@Argument(help: "Input files where strings ared defined.", transform: { $0.replaceTiltWithHomeDirectoryPath() })
|
|
var inputFile: String
|
|
|
|
@Option(help: "Path where to strings file.", transform: { $0.replaceTiltWithHomeDirectoryPath() })
|
|
var outputPath: String
|
|
|
|
@Option(name: .customLong("langs"), help: "Langs to generate.")
|
|
var langsRaw: String
|
|
|
|
@Option(help: "Default langs.")
|
|
var defaultLang: String
|
|
|
|
@Option(help: "Path where to generate the extension.", transform: { $0.replaceTiltWithHomeDirectoryPath() })
|
|
var extensionOutputPath: String
|
|
}
|