import ProjectDescription let project = Project( name: "StandbyCal", targets: [ .target( name: "StandbyCal", destinations: .iOS, product: .app, bundleId: "dev.xmaxsmi.standbycal", infoPlist: .extendingDefault( with: [ "UILaunchScreen": [ "UIColorName": "", "UIImageName": "", ], ] ), sources: ["StandbyCal/Sources/**"], resources: ["StandbyCal/Resources/**"], dependencies: [] ), .target( name: "StandbyCalTests", destinations: .iOS, product: .unitTests, bundleId: "dev.xmaxsmi.standbycal.tests", infoPlist: .default, sources: ["StandbyCal/Tests/**"], resources: [], dependencies: [.target(name: "StandbyCal")] ), ] )