-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
59 lines (59 loc) 路 1.68 KB
/
Copy pathproject.yml
File metadata and controls
59 lines (59 loc) 路 1.68 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: PowerSnek
options:
bundleIdPrefix: com.powersnek
deploymentTarget:
macOS: "14.0"
createIntermediateGroups: true
settings:
base:
SWIFT_VERSION: "6.0"
MARKETING_VERSION: "0.2.1"
CURRENT_PROJECT_VERSION: "3"
targets:
PowerSnekKit:
type: framework
platform: macOS
sources:
- Sources/PowerSnekKit
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.powersnek.kit
INFOPLIST_FILE: Sources/PowerSnekKit/Resources/Info.plist
PowerSnek:
type: application
platform: macOS
sources:
- Sources/PowerSnek
dependencies:
- target: PowerSnekKit
embed: true
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.powersnek.app
INFOPLIST_FILE: Sources/PowerSnek/Resources/Info.plist
ENABLE_HARDENED_RUNTIME: YES
CODE_SIGN_ENTITLEMENTS: Sources/PowerSnek/Resources/PowerSnek.entitlements
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
PowerSnekKitTests:
type: bundle.unit-test
platform: macOS
sources:
- Tests/PowerSnekKitTests
dependencies:
- target: PowerSnekKit
settings:
base:
GENERATE_INFOPLIST_FILE: YES
PRODUCT_BUNDLE_IDENTIFIER: com.powersnek.kit.tests
schemes:
PowerSnek:
build:
targets:
PowerSnek: all
PowerSnekKit: all
run:
config: Debug
test:
config: Debug
targets:
- PowerSnekKitTests