Implemented the BuildCommand command in the executable target.

This commit is contained in:
2025-02-18 23:53:08 +01:00
parent 4425a1ce73
commit 4cf3eb6784
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,13 @@
import ArgumentParser
import ColibriLibrary
extension Colibri.Build {
struct Options: ParsableArguments, Locationable {
// MARK: Properties
@Option(name: .shortAndLong)
var location: String?
}
}