From f8f05551fc1592db0fe930938fe812b87c6390fc Mon Sep 17 00:00:00 2001 From: TheAlgorithm476 Date: Wed, 21 May 2025 10:07:20 +0200 Subject: [PATCH] Remove products from Package.swift, since they're not needed here. --- Interop-BridgingHeader/Package.swift | 4 ---- Interop-ModuleMap/Package.swift | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Interop-BridgingHeader/Package.swift b/Interop-BridgingHeader/Package.swift index 515eed9..7da3b61 100644 --- a/Interop-BridgingHeader/Package.swift +++ b/Interop-BridgingHeader/Package.swift @@ -6,10 +6,6 @@ import PackageDescription let package = Package( name: "Interop-BridgingHeader", platforms: [.macOS(.v15)], - products: [ - .library(name: "CMath", targets: ["CMath"]), - .executable(name: "Interop-BridgingHeader", targets: ["Interop-BridgingHeader"]) - ], targets: [ // 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. diff --git a/Interop-ModuleMap/Package.swift b/Interop-ModuleMap/Package.swift index 3900f26..2d4b391 100644 --- a/Interop-ModuleMap/Package.swift +++ b/Interop-ModuleMap/Package.swift @@ -6,10 +6,6 @@ import PackageDescription let package = Package( name: "Interop-ModuleMap", platforms: [.macOS(.v15)], - products: [ - .library(name: "CMath", targets: ["CMath"]), - .executable(name: "Interop-ModuleMap", targets: ["Interop-ModuleMap"]) - ], targets: [ // 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.