fastlane-plugin-xcconfig_actions 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -1
  3. data/lib/fastlane/plugin/xcconfig_actions/actions/build_settings_to_flags_action.rb +12 -11
  4. data/lib/fastlane/plugin/xcconfig_actions/actions/read_xcconfig_action.rb +25 -23
  5. data/lib/fastlane/plugin/xcconfig_actions/helper/xcconfig_actions_helper.rb +2 -3
  6. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspec.rb +15 -13
  7. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/CopyPNGFile.xcspec +113 -0
  8. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Core Data.xcspec +289 -0
  9. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Cpp.xcspec +63 -0
  10. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/DTrace.xcspec +87 -0
  11. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Intents.xcspec +80 -0
  12. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Lex.xcspec +100 -0
  13. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/MLKit.xcspec +137 -0
  14. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Metal Compiler.xcspec +466 -0
  15. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Metal Linker.xcspec +105 -0
  16. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Nasm.xcspec +101 -0
  17. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Native Build System.xcspec +53 -0
  18. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/NativeBuildSystem.xcspec +1600 -0
  19. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/OSACompile.xcspec +63 -0
  20. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/OpenCL.xcspec +158 -0
  21. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/README.md +15021 -0
  22. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Rez.xcspec +209 -0
  23. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.1/Yacc.xcspec +100 -0
  24. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/CopyPNGFile.xcspec +113 -0
  25. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Core Data.xcspec +289 -0
  26. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Cpp.xcspec +63 -0
  27. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/DTrace.xcspec +89 -0
  28. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Intents.xcspec +80 -0
  29. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Lex.xcspec +100 -0
  30. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/MLKit.xcspec +137 -0
  31. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Metal Compiler.xcspec +466 -0
  32. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Metal Linker.xcspec +105 -0
  33. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Nasm.xcspec +101 -0
  34. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Native Build System.xcspec +53 -0
  35. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/NativeBuildSystem.xcspec +1615 -0
  36. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/OSACompile.xcspec +63 -0
  37. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/OpenCL.xcspec +158 -0
  38. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/README.md +15250 -0
  39. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Rez.xcspec +209 -0
  40. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Swift.xcspec +1 -1
  41. data/lib/fastlane/plugin/xcconfig_actions/helper/xcspecs/10.2/Yacc.xcspec +100 -0
  42. data/lib/fastlane/plugin/xcconfig_actions/version.rb +1 -1
  43. metadata +50 -2
@@ -0,0 +1,63 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CommandLine</key>
6
+ <string>cc -E -P -x c -Wno-trigraphs [input] -F$(BUILT_PRODUCTS_DIR) [options] -o [output]</string>
7
+ <key>CommandOutputParser</key>
8
+ <string>XCGccCommandOutputParser</string>
9
+ <key>Description</key>
10
+ <string>Standalone C Preprocessor</string>
11
+ <key>ExecDescription</key>
12
+ <string>Preprocess $(InputFile)</string>
13
+ <key>Identifier</key>
14
+ <string>com.apple.compilers.cpp</string>
15
+ <key>IsAbstract</key>
16
+ <string>YES</string>
17
+ <key>Name</key>
18
+ <string>Cpp</string>
19
+ <key>Options</key>
20
+ <array>
21
+ <dict>
22
+ <key>CommandLineFlag</key>
23
+ <string>-isysroot</string>
24
+ <key>Name</key>
25
+ <string>SDKROOT</string>
26
+ <key>Type</key>
27
+ <string>Path</string>
28
+ </dict>
29
+ <dict>
30
+ <key>CommandLinePrefixFlag</key>
31
+ <string>-D</string>
32
+ <key>Name</key>
33
+ <string>CPP_PREPROCESSOR_DEFINITIONS</string>
34
+ <key>Type</key>
35
+ <string>stringlist</string>
36
+ </dict>
37
+ <dict>
38
+ <key>CommandLineFlag</key>
39
+ <string>-include</string>
40
+ <key>InputInclusions</key>
41
+ <string>$(CPP_PREFIX_HEADER)</string>
42
+ <key>Name</key>
43
+ <string>CPP_PREFIX_HEADER</string>
44
+ <key>Type</key>
45
+ <string>string</string>
46
+ </dict>
47
+ <dict>
48
+ <key>CommandLinePrefixFlag</key>
49
+ <string></string>
50
+ <key>Name</key>
51
+ <string>CPP_OTHER_PREPROCESSOR_FLAGS</string>
52
+ <key>Type</key>
53
+ <string>stringlist</string>
54
+ </dict>
55
+ </array>
56
+ <key>ProgressDescription</key>
57
+ <string>Preprocessing $(CommandProgressByType) files</string>
58
+ <key>RuleName</key>
59
+ <string>Preprocess $(OutputPath) $(InputPath)</string>
60
+ <key>Type</key>
61
+ <string>Tool</string>
62
+ </dict>
63
+ </plist>
@@ -0,0 +1,89 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CommandLine</key>
6
+ <string>/usr/sbin/dtrace [options] -s $(InputFileRelativePath) -o $(DerivedFilesDir)/$(InputFileBase).h</string>
7
+ <key>CommandOutputParser</key>
8
+ <array>
9
+ <array>
10
+ <string>^dtrace: failed to compile script ([^:]+): line ([0-9]+): (.*)$</string>
11
+ <string>emit-error</string>
12
+ </array>
13
+ <array>
14
+ <string>^dtrace: ()()(.*)$</string>
15
+ <string>emit-error</string>
16
+ </array>
17
+ </array>
18
+ <key>Description</key>
19
+ <string>Invoke the 'dtrace' command line utility to compile a DTrace script file.</string>
20
+ <key>ExecDescription</key>
21
+ <string>Process DTrace script $(InputFile)</string>
22
+ <key>Identifier</key>
23
+ <string>com.apple.compilers.dtrace</string>
24
+ <key>InputFileTypes</key>
25
+ <array>
26
+ <string>sourcecode.dtrace</string>
27
+ </array>
28
+ <key>IsArchitectureNeutral</key>
29
+ <string>YES</string>
30
+ <key>Name</key>
31
+ <string>DTrace</string>
32
+ <key>Options</key>
33
+ <array>
34
+ <dict>
35
+ <key>DefaultValue</key>
36
+ <string>Header</string>
37
+ <key>Name</key>
38
+ <string>DTRACE_OUTPUT_FILE_TYPE</string>
39
+ <key>Type</key>
40
+ <string>Enumeration</string>
41
+ <key>Values</key>
42
+ <array>
43
+ <dict>
44
+ <key>CommandLineFlag</key>
45
+ <string>-h</string>
46
+ <key>Value</key>
47
+ <string>Header</string>
48
+ </dict>
49
+ </array>
50
+ </dict>
51
+ <dict>
52
+ <key>Category</key>
53
+ <string>BuildOptions</string>
54
+ <key>CommandLinePrefixFlag</key>
55
+ <string></string>
56
+ <key>DefaultValue</key>
57
+ <string></string>
58
+ <key>Name</key>
59
+ <string>DTRACE_OTHER_FLAGS</string>
60
+ <key>Type</key>
61
+ <string>StringList</string>
62
+ </dict>
63
+ <dict>
64
+ <key>CommandLinePrefixFlag</key>
65
+ <string></string>
66
+ <key>DefaultValue</key>
67
+ <string></string>
68
+ <key>Name</key>
69
+ <string>build_file_compiler_flags</string>
70
+ <key>Type</key>
71
+ <string>StringList</string>
72
+ </dict>
73
+ </array>
74
+ <key>Outputs</key>
75
+ <array>
76
+ <string>$(DerivedFilesDir)/$(InputFileBase).h</string>
77
+ </array>
78
+ <key>OutputsAreSourceFiles</key>
79
+ <string>Yes</string>
80
+ <key>ProgressDescription</key>
81
+ <string>Processing $(CommandProgressByType) DTrace scripts</string>
82
+ <key>RuleName</key>
83
+ <string>CompileDTraceScript $(InputFileRelativePath)</string>
84
+ <key>SynthesizeBuildRule</key>
85
+ <string>Yes</string>
86
+ <key>Type</key>
87
+ <string>Compiler</string>
88
+ </dict>
89
+ </plist>
@@ -0,0 +1,80 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <array>
5
+ <dict>
6
+ <key>Class</key>
7
+ <string>XCCompilerSpecificationIntents</string>
8
+ <key>CommandLine</key>
9
+ <string>intentbuilderc $(InputFile) $(ProductResourcesDir)/ [special-args]</string>
10
+ <key>CommandOutputParser</key>
11
+ <array>
12
+ <array>
13
+ <string>^([^:]*):() warning: (.*)$</string>
14
+ <string>emit-warning</string>
15
+ </array>
16
+ <array>
17
+ <string>^([^:]*):() error: (.*)$</string>
18
+ <string>emit-error</string>
19
+ </array>
20
+ </array>
21
+ <key>DeeplyStatInputDirectories</key>
22
+ <string>Yes</string>
23
+ <key>Description</key>
24
+ <string>intentbuilderc: processes Intent Definitions .intentdefinition</string>
25
+ <key>ExecDescription</key>
26
+ <string>Process Intent Definition $(InputFile) </string>
27
+ <key>Identifier</key>
28
+ <string>com.apple.compilers.intents</string>
29
+ <key>InputFileTypes</key>
30
+ <array>
31
+ <string>file.intentdefinition</string>
32
+ </array>
33
+ <key>IsArchitectureNeutral</key>
34
+ <string>Yes</string>
35
+ <key>MessageCategoryInfoOptions</key>
36
+ <array>
37
+ <string>--print-diagnostic-categories</string>
38
+ <string>destination</string>
39
+ <string>source</string>
40
+ </array>
41
+ <key>Name</key>
42
+ <string>Intent Definition Compiler</string>
43
+ <key>Options</key>
44
+ <array>
45
+ <dict>
46
+ <key>Category</key>
47
+ <string>Code Generation</string>
48
+ <key>DefaultValue</key>
49
+ <string>Automatic</string>
50
+ <key>Description</key>
51
+ <string>The Source-code language to use for generated Intent class. By default "Automatic" will analyze your project to determine the correct language. Adjust this setting to explicitly select "Swift" or "Objective-C".</string>
52
+ <key>DisplayName</key>
53
+ <string>Intent Class Generation Language</string>
54
+ <key>Name</key>
55
+ <string>INTENTS_CODEGEN_LANGUAGE</string>
56
+ <key>Type</key>
57
+ <string>enum</string>
58
+ <key>Values</key>
59
+ <array>
60
+ <string>Swift</string>
61
+ <string>Objective-C</string>
62
+ <string>Automatic</string>
63
+ </array>
64
+ </dict>
65
+ </array>
66
+ <key>Outputs</key>
67
+ <array>
68
+ <string>$(ProductResourcesDir)/$(InputFileBase).intentdefinition</string>
69
+ </array>
70
+ <key>ProgressDescription</key>
71
+ <string>Processing $(CommandProgressByType) Intent Definitions</string>
72
+ <key>RuleName</key>
73
+ <string>IntentDefinitionCompile $(ProductResourcesDir)/ $(InputFile)</string>
74
+ <key>SynthesizeBuildRule</key>
75
+ <string>Yes</string>
76
+ <key>Type</key>
77
+ <string>Compiler</string>
78
+ </dict>
79
+ </array>
80
+ </plist>
@@ -0,0 +1,100 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>BuiltinJambaseRuleName</key>
6
+ <string>ProcessUsingLex</string>
7
+ <key>Class</key>
8
+ <string>PBXCompilerSpecificationLex</string>
9
+ <key>Description</key>
10
+ <string>Lex Scanner Generator</string>
11
+ <key>ExecDescription</key>
12
+ <string>Lex $(InputFile)</string>
13
+ <key>ExecPath</key>
14
+ <string>$(LEX)</string>
15
+ <key>Identifier</key>
16
+ <string>com.apple.compilers.lex</string>
17
+ <key>InputFileTypes</key>
18
+ <array>
19
+ <string>sourcecode.lex</string>
20
+ </array>
21
+ <key>IsArchitectureNeutral</key>
22
+ <string>YES</string>
23
+ <key>Name</key>
24
+ <string>Lex</string>
25
+ <key>Options</key>
26
+ <array>
27
+ <dict>
28
+ <key>Category</key>
29
+ <string>BuildOptions</string>
30
+ <key>CommandLineFlag</key>
31
+ <string>-i</string>
32
+ <key>DefaultValue</key>
33
+ <string>NO</string>
34
+ <key>Name</key>
35
+ <string>LEX_CASE_INSENSITIVE_SCANNER</string>
36
+ <key>Type</key>
37
+ <string>Boolean</string>
38
+ </dict>
39
+ <dict>
40
+ <key>Category</key>
41
+ <string>BuildOptions</string>
42
+ <key>CommandLineFlag</key>
43
+ <string>-s</string>
44
+ <key>DefaultValue</key>
45
+ <string>NO</string>
46
+ <key>Name</key>
47
+ <string>LEX_SUPPRESS_DEFAULT_RULE</string>
48
+ <key>Type</key>
49
+ <string>Boolean</string>
50
+ </dict>
51
+ <dict>
52
+ <key>Category</key>
53
+ <string>BuildOptions</string>
54
+ <key>CommandLineArgs</key>
55
+ <dict>
56
+ <key>NO</key>
57
+ <array>
58
+ <string>-L</string>
59
+ </array>
60
+ </dict>
61
+ <key>DefaultValue</key>
62
+ <string>YES</string>
63
+ <key>Name</key>
64
+ <string>LEX_INSERT_LINE_DIRECTIVES</string>
65
+ <key>Type</key>
66
+ <string>Boolean</string>
67
+ </dict>
68
+ <dict>
69
+ <key>Category</key>
70
+ <string>BuildOptions</string>
71
+ <key>DefaultValue</key>
72
+ <string></string>
73
+ <key>FileTypes</key>
74
+ <array>
75
+ <string>sourcecode.lex</string>
76
+ </array>
77
+ <key>Name</key>
78
+ <string>LEXFLAGS</string>
79
+ <key>Type</key>
80
+ <string>StringList</string>
81
+ </dict>
82
+ <dict>
83
+ <key>Category</key>
84
+ <string>Warnings</string>
85
+ <key>CommandLineFlag</key>
86
+ <string>-w</string>
87
+ <key>DefaultValue</key>
88
+ <string>NO</string>
89
+ <key>Name</key>
90
+ <string>LEX_SUPPRESS_WARNINGS</string>
91
+ <key>Type</key>
92
+ <string>Boolean</string>
93
+ </dict>
94
+ </array>
95
+ <key>ProgressDescription</key>
96
+ <string>Lexing $(CommandProgressByType) files</string>
97
+ <key>Type</key>
98
+ <string>Tool</string>
99
+ </dict>
100
+ </plist>
@@ -0,0 +1,137 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <array>
5
+ <dict>
6
+ <key>Class</key>
7
+ <string>XCCompilerSpecificationMLKit</string>
8
+ <key>CommandLine</key>
9
+ <string>coremlc compile $(InputFile) $(ProductResourcesDir)/ [options]</string>
10
+ <key>CommandOutputParser</key>
11
+ <array>
12
+ <array>
13
+ <string>^[^:]*: Warning: (?=[^:]*: (/.*)$)()([^:]*):</string>
14
+ <string>emit-warning</string>
15
+ </array>
16
+ <array>
17
+ <string>()()Warning: (.+)</string>
18
+ <string>emit-warning</string>
19
+ </array>
20
+ <array>
21
+ <string>^[^:]*: Error: (?=[^:]*: (/.*)$)()([^:]*):</string>
22
+ <string>emit-error</string>
23
+ </array>
24
+ <array>
25
+ <string>^([^:]*)(): Error: (.*)$</string>
26
+ <string>emit-error</string>
27
+ </array>
28
+ <array>
29
+ <string>^detail: ()()(.*)$</string>
30
+ <string>emit-notice</string>
31
+ </array>
32
+ </array>
33
+ <key>DeeplyStatInputDirectories</key>
34
+ <string>Yes</string>
35
+ <key>Description</key>
36
+ <string>coremlc: compiler of CoreML model .mlmodel into .mlmodelc</string>
37
+ <key>ExecDescription</key>
38
+ <string>Compile CoreML model $(InputFile) </string>
39
+ <key>GeneratedInfoPlistContentFilePath</key>
40
+ <string>$(COREML_COMPILER_INFOPLIST_CONTENT_FILE)</string>
41
+ <key>Identifier</key>
42
+ <string>com.apple.compilers.coreml</string>
43
+ <key>InputFileTypes</key>
44
+ <array>
45
+ <string>file.mlmodel</string>
46
+ </array>
47
+ <key>IsArchitectureNeutral</key>
48
+ <string>Yes</string>
49
+ <key>MessageCategoryInfoOptions</key>
50
+ <array>
51
+ <string>--print-diagnostic-categories</string>
52
+ <string>destination</string>
53
+ <string>source</string>
54
+ </array>
55
+ <key>Name</key>
56
+ <string>CoreML Model Compiler</string>
57
+ <key>Options</key>
58
+ <array>
59
+ <dict>
60
+ <key>Category</key>
61
+ <string>Code Generation</string>
62
+ <key>DefaultValue</key>
63
+ <string>NO</string>
64
+ <key>Description</key>
65
+ <string>Generate Swift model classes that are marked with @objc and are descendants of NSObject, in order to be accessible and usable in Objective-C. This setting has no effect if "CoreML Model Class Generation Language" is set to "Objective-C".</string>
66
+ <key>DisplayName</key>
67
+ <string>CoreML Generated Model Inherits NSObject</string>
68
+ <key>Name</key>
69
+ <string>COREML_CODEGEN_SWIFT_GLOBAL_MODULE</string>
70
+ <key>Type</key>
71
+ <string>Boolean</string>
72
+ </dict>
73
+ <dict>
74
+ <key>Category</key>
75
+ <string>Code Generation</string>
76
+ <key>DefaultValue</key>
77
+ <string>Automatic</string>
78
+ <key>Description</key>
79
+ <string>The Source-code language to use for generated CoreML model class. By default "Automatic" will analyze your project to determine the correct language. Adjust this setting to explicitly select "Swift" or "Objective-C", or select "None" to disable model class generation.</string>
80
+ <key>DisplayName</key>
81
+ <string>CoreML Model Class Generation Language</string>
82
+ <key>Name</key>
83
+ <string>COREML_CODEGEN_LANGUAGE</string>
84
+ <key>Type</key>
85
+ <string>enum</string>
86
+ <key>Values</key>
87
+ <array>
88
+ <string>Swift</string>
89
+ <string>Objective-C</string>
90
+ <string>Automatic</string>
91
+ <string>None</string>
92
+ </array>
93
+ </dict>
94
+ <dict>
95
+ <key>DefaultValue</key>
96
+ <string>$(SWIFT_VERSION)</string>
97
+ <key>Name</key>
98
+ <string>COREML_CODEGEN_SWIFT_VERSION</string>
99
+ <key>Type</key>
100
+ <string>String</string>
101
+ </dict>
102
+ <dict>
103
+ <key>CommandLinePrefixFlag</key>
104
+ <string></string>
105
+ <key>DefaultValue</key>
106
+ <string></string>
107
+ <key>Name</key>
108
+ <string>build_file_compiler_flags</string>
109
+ <key>Type</key>
110
+ <string>StringList</string>
111
+ </dict>
112
+ <dict>
113
+ <key>CommandLineFlag</key>
114
+ <string>--output-partial-info-plist</string>
115
+ <key>DefaultValue</key>
116
+ <string>$(TARGET_TEMP_DIR)/$(InputFileBase)-CoreMLPartialInfo.plist</string>
117
+ <key>Name</key>
118
+ <string>COREML_COMPILER_INFOPLIST_CONTENT_FILE</string>
119
+ <key>Type</key>
120
+ <string>Path</string>
121
+ </dict>
122
+ </array>
123
+ <key>Outputs</key>
124
+ <array>
125
+ <string>$(ProductResourcesDir)/$(InputFileBase).mlmodelc</string>
126
+ </array>
127
+ <key>ProgressDescription</key>
128
+ <string>Compiling $(CommandProgressByType) CoreML models</string>
129
+ <key>RuleName</key>
130
+ <string>CoreMLModelCompile $(ProductResourcesDir)/ $(InputFile)</string>
131
+ <key>SynthesizeBuildRule</key>
132
+ <string>Yes</string>
133
+ <key>Type</key>
134
+ <string>Compiler</string>
135
+ </dict>
136
+ </array>
137
+ </plist>