-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
31 lines (30 loc) · 916 Bytes
/
Copy pathProject.swift
File metadata and controls
31 lines (30 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import ProjectDescription
let project = Project(
name: "GithubMonitor",
organizationName: "Dimillian",
settings: .settings(
base: [
"SWIFT_VERSION": "5.10",
"MACOSX_DEPLOYMENT_TARGET": "14.0"
]
),
targets: [
.target(
name: "GithubMonitor",
destinations: .macOS,
product: .app,
bundleId: "com.dimillian.GithubMonitor",
deploymentTargets: .macOS("14.0"),
infoPlist: .extendingDefault(with: [
"LSUIElement": true,
"GitHubOAuthClientID": "Ov23liFsaI8OBg0R8qH8"
]),
sources: ["Sources/**"],
settings: .settings(base: [
"CODE_SIGN_STYLE": "Manual",
"CODE_SIGN_IDENTITY": "Developer ID Application",
"DEVELOPMENT_TEAM": "Z6P74P6T99"
])
)
]
)