From 83cc8c182f05556ed1b36278e10351495b850f83 Mon Sep 17 00:00:00 2001
From: lpw <812862340@qq.com>
Date: Tue, 01 Jul 2025 15:21:33 +0800
Subject: [PATCH] 4.4.0

---
 Package.swift |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/Package.swift b/Package.swift
new file mode 100644
index 0000000..09e7bb7
--- /dev/null
+++ b/Package.swift
@@ -0,0 +1,40 @@
+// swift-tools-version: 6.0
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+    name: "WAGhglImpl",
+    products: [
+        // Products define the executables and libraries a package produces, making them visible to other packages.
+        .library(
+            name: "WAGhglImpl",
+            targets: ["WAGhglImpl"]),
+    ],
+    targets: [
+        .binaryTarget(
+            name: "WAGhglImplBinary",
+            path: "./WAGhglImpl/WAGhglImpl.xcframework"
+        ),
+        
+        // Targets are the basic building blocks of a package, defining a module or a test suite.
+        // Targets can depend on other targets in this package and products from dependencies.
+        .target(
+            name: "WAGhglImpl",
+            dependencies: [
+                "WAGhglImplBinary",
+            ],
+            path: "Sources/WAGhglImpl",
+            resources: [.process("config/wa_sdk_impl_config_ghgl.xml")],
+
+            publicHeadersPath: "",
+            cSettings: [
+                .headerSearchPath("")
+            ],
+            linkerSettings: [
+
+            ]
+        )
+    ]
+)
+

--
Gitblit v1.8.0