15 lines
502 B
Swift
15 lines
502 B
Swift
import ProjectDescription
|
|
import ProjectDescriptionHelpers
|
|
|
|
let project = Project.stripeFramework(
|
|
name: "StripePaymentsUI",
|
|
resources: "StripePaymentsUI/Resources/**",
|
|
dependencies: [
|
|
.project(target: "StripeCore", path: "//StripeCore"),
|
|
.project(target: "StripeUICore", path: "//StripeUICore"),
|
|
.project(target: "StripePayments", path: "//StripePayments"),
|
|
.project(target: "Stripe3DS2", path: "//Stripe3DS2"),
|
|
],
|
|
unitTestOptions: .testOptions()
|
|
)
|