-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.yml
47 lines (47 loc) · 1.22 KB
/
project.yml
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
name: SMS
packages:
AesEverywhere:
url: https://github.com/mervick/aes-everywhere-swift.git
from: 1.2.0
FSCalendar:
url: https://github.com/Goeun1001/FSCalendar
branch: master
options:
postGenCommand: pod install # 생성 이후 명령 실행
settingGroups:
app:
DEVELOPMENT_TEAM: Z25H7B85Z8
targets:
SMS:
scheme:
testTargets:
- SMSUITests
sources:
excludes:
- "Main.storyboard"
- "SceneDelegate.swift"
settings:
groups: [app]
commandLineArguments: [run: true, test: true, archive: true, profile: true, analyst: true]
base:
INFOPLIST_FILE: SMS/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.DaeduckSoftwareMeisterHighSchool.SMS
type: application
platform: iOS
deploymentTarget: 13.0
sources: [SMS]
dependencies:
- package: AesEverywhere
- package: FSCalendar
SMSUITests:
type: bundle.ui-testing # 테스트 타입
platform: iOS # 플랫폼
sources: [SMS, SMSUITests]
settings:
groups: [app]
INFOPLIST_FILE: Info.plist # Info.plist 등록
commandLineArguments: [test: true]
dependencies:
- target: SMS
- package: AesEverywhere
- package: FSCalendar