From 613444ccde623dd562d5b43b2255cc498cc8c526 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 22 Feb 2025 01:00:18 +0100 Subject: [PATCH] Added the "artifact" property to the BuildOptions options in the executable target. --- Executable/Sources/Options/BuildOptions.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Executable/Sources/Options/BuildOptions.swift b/Executable/Sources/Options/BuildOptions.swift index 9396639..009afdc 100644 --- a/Executable/Sources/Options/BuildOptions.swift +++ b/Executable/Sources/Options/BuildOptions.swift @@ -6,6 +6,9 @@ extension Colibri.Build { // MARK: Properties + @Option(name: .shortAndLong) + var artifact: Artifact = .executable + @Option(name: .shortAndLong) var location: String?