-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample.yaml
More file actions
29 lines (29 loc) · 1.83 KB
/
Example.yaml
File metadata and controls
29 lines (29 loc) · 1.83 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
build_setting:
project: # Setup build setting to sepcified target
LD_RUNPATH_SEARCH_PATHS: # Name of setting
- $(inherited) # Value of `LD_RUNPATH_SEARCH_PATHS` for all configuration
- TestPaht
targets: # Setup build setting to sepcified target
XcodProjTest: # target name
LD_RUNPATH_SEARCH_PATHS: # Name of setting
Debug: # Value of `LD_RUNPATH_SEARCH_PATHS` for debug configuration
- $(inherited)
- Test
ONLY_ACTIVE_ARCH: NO # Value of `ONLY_ACTIVE_ARCH` for release configuration
build_phase:
create_run_scripts:
test_script: "echo 1233" # Add run script phase to all target
test_script_1: # Name of run script name
tragets:
- XcodProjTest # Add run script phase to specified target
script: "echo 1233"
add_resources: # Add resources file to project
- "/Users/jerry/Desktop/XcodProjTest/BuildSetting.yaml"
- tragets: # Add resources file to specified target
- XcodProjTest
file: "/Users/jerry/Desktop/XcodProjTest/BuildSetting.json"
add_source: # Add sources file
- "/Users/jerry/Desktop/XcodProjTest/aa.c" # Add source file to all target
- tragets:
- XcodProjTest # Add source file to specified target
file: "/Users/jerry/Desktop/XcodProjTest/bb.c"