20 lines
537 B
Swift
20 lines
537 B
Swift
import ProjectDescription
|
|
import ProjectDescriptionHelpers
|
|
|
|
let project = Project(
|
|
name: .PrettyCards,
|
|
additionalBaseSettings: SettingsDictionary().allowAppExtensionAPIOnly(true),
|
|
targets: [
|
|
Target(
|
|
name: .PrettyCards
|
|
),
|
|
Target(
|
|
name: .PrettyCardsTests,
|
|
product: .unitTests,
|
|
sources: .defaultTestsPath,
|
|
dependencies: [.target(name: .PrettyCards)]
|
|
)
|
|
],
|
|
additionalFiles: ["README.MD", "Package.swift", "PrettyCards.podspec"]
|
|
)
|