-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathproject.yml
More file actions
71 lines (67 loc) · 1.62 KB
/
project.yml
File metadata and controls
71 lines (67 loc) · 1.62 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
60
61
62
63
64
65
66
67
68
69
70
71
name: PureMac
packages:
Sparkle:
url: https://github.com/sparkle-project/Sparkle
from: 2.0.0
options:
bundleIdPrefix: com.puremac
deploymentTarget:
macOS: "13.0"
xcodeVersion: "16.4"
createIntermediateGroups: true
defaultConfig: Release
settings:
base:
SWIFT_VERSION: "5.9"
MACOSX_DEPLOYMENT_TARGET: "13.0"
ARCHS: "arm64 x86_64"
ONLY_ACTIVE_ARCH: "NO"
CODE_SIGN_IDENTITY: "Apple Development"
CODE_SIGN_STYLE: "Automatic"
DEVELOPMENT_TEAM: "H3WXHVTP97"
CODE_SIGN_ENTITLEMENTS: "PureMac/PureMac.entitlements"
INFOPLIST_FILE: "PureMac/Info.plist"
PRODUCT_BUNDLE_IDENTIFIER: "com.puremac.app"
MARKETING_VERSION: "2.6.1"
CURRENT_PROJECT_VERSION: "13"
GENERATE_INFOPLIST_FILE: "NO"
ASSETCATALOG_COMPILER_APPICON_NAME: "AppIcon"
COMBINE_HIDPI_IMAGES: "YES"
targets:
PureMac:
type: application
platform: macOS
sources:
- PureMac
dependencies:
- package: Sparkle
product: Sparkle
settings:
base:
PRODUCT_NAME: PureMac
SWIFT_EMIT_LOC_STRINGS: "YES"
LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/../Frameworks"
configs:
Debug:
CODE_SIGNING_ALLOWED: "NO"
CODE_SIGNING_REQUIRED: "NO"
PureMacTests:
type: bundle.unit-test
platform: macOS
sources:
- PureMacTests
dependencies:
- target: PureMac
settings:
base:
CODE_SIGNING_ALLOWED: "NO"
CODE_SIGNING_REQUIRED: "NO"
schemes:
PureMac:
build:
targets:
PureMac: all
PureMacTests: [test]
test:
targets:
- name: PureMacTests