Initial commit
This commit is contained in:
34
Project.swift
Normal file
34
Project.swift
Normal file
@@ -0,0 +1,34 @@
|
||||
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")]
|
||||
),
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user