From 5d094197092849eafa613b588b1e04dec06a99c0 Mon Sep 17 00:00:00 2001 From: Mikhail Tishin Date: Thu, 19 Oct 2023 01:26:54 +0300 Subject: [PATCH] Expose ExtensionApi as a package product --- Package.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Package.swift b/Package.swift index 340a148ef..88056b56b 100644 --- a/Package.swift +++ b/Package.swift @@ -18,6 +18,12 @@ var products: [Product] = [ name: "SwiftGodot", type: .dynamic, targets: ["SwiftGodot"]), + .library( + name: "ExtensionApi", + targets: [ + "ExtensionApi", + "ExtensionApiJson" + ]), .plugin(name: "CodeGeneratorPlugin", targets: ["CodeGeneratorPlugin"]), ]