Skip to content

Commit

Permalink
unnecessary dependencies were removed from Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
yoalex5 committed Apr 26, 2021
1 parent 8b9261f commit b50dd56
Showing 1 changed file with 2 additions and 38 deletions.
40 changes: 2 additions & 38 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,49 +15,13 @@ let package = Package(

.library(
name: "PrebidMobile",
targets: ["PrebidMobile"]),

.library(
name: "PrebidMobileAdditional",
targets: ["PrebidMobileAdditional"]),

.library(
name: "SomeLibraryName",
targets: ["PrebidMobileAdditional2"])


targets: ["PrebidMobile"])
],

targets: [
.target(
name: "PrebidMobile",

path: "PrebidMobile",
cSettings: [
.unsafeFlags(["-emit-objc-header", "-emit-objc-header-path ./Headers/Greeter-Swift.h", "-emit-module-path ./Modules/"]),

],
swiftSettings: [
.unsafeFlags(["-emit-objc-header"]),

]

),

.target(
name: "PrebidMobileAdditional",
dependencies: [
"PrebidMobile"
],
path: "PrebidMobileAdditional"
),

.target(
name: "PrebidMobileAdditional2",
dependencies: [
"PrebidMobile"
],
path: "PrebidMobileAdditional2"
path: "PrebidMobile"
)
],

Expand Down

0 comments on commit b50dd56

Please sign in to comment.