-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
95 lines (92 loc) · 2.48 KB
/
project.yml
File metadata and controls
95 lines (92 loc) · 2.48 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: RetroGate
options:
bundleIdPrefix: com.brunowernimont
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
generateEmptyDirectories: false
createIntermediateGroups: true
packages:
swift-nio:
url: https://github.com/apple/swift-nio.git
from: "2.65.0"
swift-nio-extras:
url: https://github.com/apple/swift-nio-extras.git
from: "1.22.0"
SwiftSoup:
url: https://github.com/scinfu/SwiftSoup.git
from: "2.7.0"
swift-argument-parser:
url: https://github.com/apple/swift-argument-parser.git
from: "1.3.0"
swift-log:
url: https://github.com/apple/swift-log.git
from: "1.5.0"
targets:
RetroGate:
type: application
platform: macOS
sources:
- path: Sources/RetroGate
excludes:
- "**/.DS_Store"
- path: Sources/ProxyServer
excludes:
- "**/.DS_Store"
- path: Sources/HTMLTranscoder
excludes:
- "**/.DS_Store"
- path: Sources/ImageTranscoder
excludes:
- "**/.DS_Store"
- path: Sources/WaybackBridge
excludes:
- "**/.DS_Store"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.brunowernimont.retrogate
PRODUCT_NAME: RetroGate
INFOPLIST_FILE: Sources/RetroGate/Info.plist
CODE_SIGN_ENTITLEMENTS: Sources/RetroGate/RetroGate.entitlements
CODE_SIGN_STYLE: Automatic
ENABLE_HARDENED_RUNTIME: YES
SWIFT_VERSION: "5.9"
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
MACOSX_DEPLOYMENT_TARGET: "14.0"
CURRENT_PROJECT_VERSION: 1
MARKETING_VERSION: "1.0.0"
GENERATE_INFOPLIST_FILE: NO
ENABLE_APP_SANDBOX: YES
configs:
Release:
SWIFT_OPTIMIZATION_LEVEL: -O
SWIFT_COMPILATION_MODE: wholemodule
dependencies:
- package: swift-nio
product: NIO
- package: swift-nio
product: NIOHTTP1
- package: swift-nio
product: NIOCore
- package: swift-nio
product: NIOPosix
- package: swift-nio-extras
product: NIOExtras
- package: SwiftSoup
- package: swift-argument-parser
product: ArgumentParser
- package: swift-log
product: Logging
RetroGateTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests/RetroGateTests
excludes:
- "**/.DS_Store"
settings:
base:
SWIFT_VERSION: "5.9"
GENERATE_INFOPLIST_FILE: YES
dependencies:
- target: RetroGate