From 589de0816ed811b6a4fd489976f764f9a7beb201 Mon Sep 17 00:00:00 2001 From: Lionello Lunesu Date: Tue, 3 Jan 2023 14:02:29 -0800 Subject: [PATCH] Add Package.swift From https://github.com/protocolbuffers/protobuf/pull/7052 --- Package.swift | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Package.swift diff --git a/Package.swift b/Package.swift new file mode 100644 index 000000000000..7aa95ef22226 --- /dev/null +++ b/Package.swift @@ -0,0 +1,39 @@ +// swift-tools-version:4.1 +// The swift-tools-version declares the minimum version of Swift required to build this package. +import PackageDescription + +let package = Package( + name: "Protobuf", + products: [ + // Products define the executables and libraries produced by a package, and make them visible to other packages. + .library(name: "Protobuf", targets: ["Protobuf"]), + ], + dependencies: [ + // Dependencies declare other packages that this package depends on. + // .package(url: /* package url */, from: "1.0.0"), + ], + targets: [ + // Targets are the basic building blocks of a package. A target can define a module or a test suite. + // Targets can depend on other targets in this package, and on products in packages which this package depends on. + .target( + name: "Protobuf", + dependencies: [], + path: "objectivec", + exclude: [ + // The following would cause duplicate symbol definitions.GPBProtocolBuffers is expected to be + // left out, as it's an umbrella implementation file. + "GPBProtocolBuffers.m", + "DevTools/", + "Tests/", + "BUILD.bazel", + "generate_well_known_types.sh", + "ProtocolBuffers_OSX.xcodeproj", + "ProtocolBuffers_iOS.xcodeproj", + "ProtocolBuffers_tvOS.xcodeproj", + "README.md", + ], + sources: ["."] +// publicHeadersPath: "." + ), + ] +)