-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
67 lines (62 loc) · 1.55 KB
/
project.yml
File metadata and controls
67 lines (62 loc) · 1.55 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
name: DevForge
options:
bundleIdPrefix: com.yourname
deploymentTarget:
macOS: "14.0"
xcodeVersion: "15.4"
createIntermediateGroups: true
groupSortPosition: top
settings:
base:
SWIFT_VERSION: "5.10"
ARCHS: "$(ARCHS_STANDARD)"
ONLY_ACTIVE_ARCH: YES
MACOSX_DEPLOYMENT_TARGET: "14.0"
ENABLE_HARDENED_RUNTIME: YES
SWIFT_STRICT_CONCURRENCY: complete
OTHER_LINKER_FLAGS: "-lproc"
configs:
Debug: debug
Release: release
targets:
DevForge:
type: application
platform: macOS
sources:
- path: DevForge
excludes:
- "Tests/"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.yourname.devforge
CODE_SIGN_STYLE: Automatic
INFOPLIST_FILE: DevForge/Info.plist
SWIFT_OBJC_BRIDGING_HEADER: DevForge/DevForge-Bridging-Header.h
METAL_LIBRARY_FILE_BASE_NAME: default
LIBRARY_SEARCH_PATHS: /usr/lib
dependencies:
- package: GRDB
product: GRDB
- package: KeychainSwift
product: KeychainSwift
preBuildScripts:
- name: SwiftLint
script: swiftlint lint --strict --quiet
basedOnDependencyAnalysis: false
DevForgeUITests:
type: bundle.ui-testing
platform: macOS
sources:
- DevForge/Tests/UITests
dependencies:
- target: DevForge
settings:
base:
TEST_TARGET_NAME: DevForge
packages:
GRDB:
url: https://github.com/groue/GRDB.swift
versionRange: ~> 6.0.0
KeychainSwift:
url: https://github.com/evgenyneu/keychain-swift
versionRange: ~> 20.0.0