Initial commit

This commit is contained in:
Maksim Smirnov
2025-08-04 09:53:13 +02:00
commit 8247ccf65f
15 changed files with 405 additions and 0 deletions

34
Project.swift Normal file
View 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")]
),
]
)