cocoapods-ykutility 0.0.18 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/configPodTemplate/example/CommonFiles/.gitkeep +0 -0
  3. data/configPodTemplate/example/CommonFiles/CommonFile.swift +9 -0
  4. data/configPodTemplate/example/NotificationContent/Base.lproj/MainInterface.storyboard +43 -0
  5. data/configPodTemplate/example/NotificationContent/Info.plist +40 -0
  6. data/configPodTemplate/example/NotificationContent/NotificationViewController.swift +25 -0
  7. data/configPodTemplate/example/NotificationService/Info.plist +38 -0
  8. data/configPodTemplate/example/NotificationService/NotificationService.swift +36 -0
  9. data/configPodTemplate/example/Podfile +53 -0
  10. data/configPodTemplate/example/READ.md +76 -0
  11. data/configPodTemplate/example/README_resource/appExtensionNameDiscussion.png +0 -0
  12. data/configPodTemplate/example/TargetMain/AppDelegate.swift +32 -0
  13. data/configPodTemplate/example/TargetMain/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  14. data/configPodTemplate/example/TargetMain/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
  15. data/configPodTemplate/example/TargetMain/Assets.xcassets/Contents.json +6 -0
  16. data/configPodTemplate/example/TargetMain/Base.lproj/LaunchScreen.storyboard +45 -0
  17. data/configPodTemplate/example/TargetMain/Info.plist +47 -0
  18. data/configPodTemplate/example/TargetMain/ViewController.swift +29 -0
  19. data/configPodTemplate/example/TargetMain/ViewController.xib +46 -0
  20. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.h +16 -0
  21. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.m +18 -0
  22. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAME_Example-Bridging-Header.h +4 -0
  23. data/configPodTemplate/example/config/iOS-config/target-main/Shared.xcconfig +105 -0
  24. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/Shared.xcconfig +2 -0
  25. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/debug.xcconfig +9 -0
  26. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/release.xcconfig +9 -0
  27. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/Shared.xcconfig +1 -0
  28. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/debug.xcconfig +9 -0
  29. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/release.xcconfig +9 -0
  30. data/configPodTemplate/example/config/iOS-config/target-main-Q/Shared.xcconfig +105 -0
  31. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/Shared.xcconfig +2 -0
  32. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/debug.xcconfig +9 -0
  33. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/release.xcconfig +9 -0
  34. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/Shared.xcconfig +1 -0
  35. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig +9 -0
  36. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/release.xcconfig +9 -0
  37. data/configPodTemplate/example/config/iOS-config/target-notificationContent/Shared.xcconfig +5 -0
  38. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/Shared.xcconfig +2 -0
  39. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/debug.xcconfig +129 -0
  40. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/release.xcconfig +9 -0
  41. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/Shared.xcconfig +2 -0
  42. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/debug.xcconfig +129 -0
  43. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/release.xcconfig +9 -0
  44. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/Shared.xcconfig +5 -0
  45. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/Shared.xcconfig +2 -0
  46. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/debug.xcconfig +129 -0
  47. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/release.xcconfig +9 -0
  48. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/Shared.xcconfig +2 -0
  49. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/debug.xcconfig +129 -0
  50. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/release.xcconfig +9 -0
  51. data/configPodTemplate/example/config/iOS-config/target-notificationService/Shared.xcconfig +7 -0
  52. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/Shared.xcconfig +2 -0
  53. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/debug.xcconfig +129 -0
  54. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/release.xcconfig +9 -0
  55. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/Shared.xcconfig +3 -0
  56. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig +129 -0
  57. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/release.xcconfig +9 -0
  58. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/Shared.xcconfig +7 -0
  59. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/Shared.xcconfig +2 -0
  60. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/debug.xcconfig +129 -0
  61. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/release.xcconfig +9 -0
  62. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/Shared.xcconfig +3 -0
  63. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/debug.xcconfig +129 -0
  64. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/release.xcconfig +9 -0
  65. data/configPodTemplate/example/config/iOS-targets-Q.yml +137 -0
  66. data/configPodTemplate/example/config/iOS-targets.yml +135 -0
  67. data/configPodTemplate/example/config/project-config/Shared.xcconfig +470 -0
  68. data/configPodTemplate/example/config/project-config/config-custom/Shared.xcconfig +8 -0
  69. data/configPodTemplate/example/config/project-config/config-custom/debug.xcconfig +127 -0
  70. data/configPodTemplate/example/config/project-config/config-custom/release.xcconfig +60 -0
  71. data/configPodTemplate/example/config/project-config/config-enterprise/Shared.xcconfig +20 -0
  72. data/configPodTemplate/example/config/project-config/config-enterprise/debug.xcconfig +127 -0
  73. data/configPodTemplate/example/config/project-config/config-enterprise/release.xcconfig +59 -0
  74. data/configPodTemplate/example/project.yml +37 -0
  75. data/configPodTemplate/objc/LICENSE +19 -0
  76. data/configPodTemplate/objc/README.md +60 -0
  77. data/configPodTemplate/objc/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
  78. data/configPodTemplate/objc/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  79. data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +16 -0
  80. data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +12 -0
  81. data/configPodTemplate/objc/YKRPC_POD_NAME.podspec +62 -0
  82. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +16 -0
  83. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +27 -0
  84. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +15 -0
  85. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +27 -0
  86. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  87. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +19 -0
  88. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +20 -0
  89. data/configPodTemplate/swift/LICENSE +19 -0
  90. data/configPodTemplate/swift/README.md +60 -0
  91. data/configPodTemplate/swift/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
  92. data/configPodTemplate/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  93. data/configPodTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +6 -0
  94. data/configPodTemplate/swift/YKRPC_POD_NAME.podspec +61 -0
  95. data/lib/cocoapods-ykutility/command/Ykutility.rb +1 -0
  96. data/lib/cocoapods-ykutility/command/create/yk_create_pod_action.rb +7 -7
  97. data/lib/cocoapods-ykutility/command/create/yk_exchange_tool.rb +1 -0
  98. data/lib/cocoapods-ykutility/command/gen/yk_gen_create_action.rb +162 -0
  99. data/lib/cocoapods-ykutility/command/gen.rb +74 -0
  100. data/lib/cocoapods-ykutility/gem_version.rb +4 -1
  101. data/podTemplate/example/Podfile +1 -1
  102. data/podTemplate/example/YKRPC_POD_NAME_Example/AppDelegate.swift +1 -1
  103. data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/LaunchScreen.storyboard +1 -1
  104. data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/Main.storyboard +1 -1
  105. data/podTemplate/example/YKRPC_POD_NAME_Example/SceneDelegate.swift +1 -1
  106. data/podTemplate/example/YKRPC_POD_NAME_Example/ViewController.swift +1 -1
  107. data/podTemplate/example/YKRPC_POD_NAME_Example.xcodeproj/project.pbxproj +1 -1
  108. data/podTemplate/objc/LICENSE +1 -1
  109. data/podTemplate/objc/README.md +4 -4
  110. data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +1 -1
  111. data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +1 -1
  112. data/podTemplate/objc/YKRPC_POD_NAME.podspec +3 -3
  113. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +1 -1
  114. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +1 -1
  115. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +1 -1
  116. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +1 -1
  117. data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +1 -1
  118. data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +1 -1
  119. data/podTemplate/swift/README.md +4 -4
  120. data/podTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +1 -1
  121. data/podTemplate/swift/YKRPC_POD_NAME.podspec +3 -3
  122. metadata +98 -3
@@ -0,0 +1,470 @@
1
+ //
2
+ // Project-Shared.xcconfig
3
+ //
4
+ // Generated by BuildSettingExtractor on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ // Always Search User Paths (Deprecated)
9
+ //
10
+ // This setting is deprecated as of Xcode 8.3 and may not be supported in future
11
+ // versions. It is recommended that you disable the setting.
12
+ //
13
+ // If enabled, both `#include <header.h>`-style and `#include "header.h"`-style
14
+ // directives search the paths in `USER_HEADER_SEARCH_PATHS` before
15
+ // `HEADER_SEARCH_PATHS`. As a consequence, user headers, such as your own `String.h`
16
+ // header, have precedence over system headers when using `#include <header.h>`. This is
17
+ // done using the `-iquote` flag for the paths provided in `USER_HEADER_SEARCH_PATHS`. If
18
+ // disabled and your compiler fully supports separate user paths, user headers are only
19
+ // accessible with `#include "header.h"`-style preprocessor directives.
20
+ //
21
+ // For backwards compatibility reasons, this setting is enabled by default. Disabling it
22
+ // is strongly recommended.
23
+
24
+ ALWAYS_SEARCH_USER_PATHS = NO
25
+
26
+ ENABLE_BITCODE = NO
27
+
28
+ SWIFT_VERSION = 4.2
29
+
30
+ // Missing Localizability
31
+ //
32
+ // Warn when a nonlocalized string is passed to a user interface method expecting a
33
+ // localized string.
34
+
35
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES
36
+
37
+
38
+
39
+ // C++ Language Dialect
40
+ //
41
+ // Choose a standard or non-standard C++ language dialect. Options include:
42
+ //
43
+ // * C++98: Accept ISO C++ 1998 with amendments, but not GNU extensions. [-std=c++98]
44
+ // * GNU++98: Accept ISO C++ 1998 with amendments and GNU extensions. [-std=gnu++98]
45
+ // * C++11: Accept the ISO C++ 2011 standard with amendments, but not GNU extensions.
46
+ // [-std=c++11]
47
+ // * GNU++11: Accept the ISO C++ 2011 standard with amendments and GNU extensions.
48
+ // [-std=gnu++11]
49
+ // * C++14: Accept the ISO C++ 2014 standard with amendments, but not GNU extensions.
50
+ // [-std=c++14]
51
+ // * GNU++14: Accept the ISO C++ 2014 standard with amendments and GNU extensions.
52
+ // [-std=gnu++14]
53
+ // * C++17: Accept the ISO C++ 2017 standard with amendments, but not GNU extensions.
54
+ // [-std=c++17]
55
+ // * GNU++17: Accept the ISO C++ 2017 standard with amendments and GNU extensions.
56
+ // [-std=gnu++17]
57
+ // * Compiler Default: Tells the compiler to use its default C++ language dialect. This
58
+ // is normally the best choice unless you have specific needs. (Currently equivalent to
59
+ // GNU++98.)
60
+
61
+ CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
62
+
63
+
64
+
65
+ CLANG_CXX_LIBRARY = libc++
66
+
67
+
68
+
69
+ // Enable Modules (C and Objective-C)
70
+ //
71
+ // Enables the use of modules for system APIs. System headers are imported as semantic
72
+ // modules instead of raw headers. This can result in faster builds and project indexing.
73
+
74
+ CLANG_ENABLE_MODULES = YES
75
+
76
+
77
+
78
+ // Objective-C Automatic Reference Counting
79
+ //
80
+ // Compiles reference-counted Objective-C code to use Automatic Reference Counting. Code
81
+ // compiled using automated reference counting is compatible with other code (such as
82
+ // frameworks) compiled using either manual reference counting (for example, traditional
83
+ // `retain` and `release` messages) or automated reference counting. [-fobjc-arc]
84
+
85
+ CLANG_ENABLE_OBJC_ARC = YES
86
+
87
+
88
+
89
+ // Duplicate Method Definitions
90
+ //
91
+ // Warn about declaring the same method more than once within the same `@interface`.
92
+
93
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
94
+
95
+
96
+
97
+ // Block Capture of Autoreleasing
98
+ //
99
+ // Warn about block captures of implicitly autoreleasing parameters.
100
+
101
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
102
+
103
+
104
+
105
+ // Implicit Boolean Conversions
106
+ //
107
+ // Warn about implicit conversions to boolean values that are suspicious. For example,
108
+ // writing `if (foo)` where `foo` is the name a function will trigger a warning.
109
+
110
+ CLANG_WARN_BOOL_CONVERSION = YES
111
+
112
+
113
+
114
+ // Suspicious Commas
115
+ //
116
+ // Warn about suspicious uses of the comma operator.
117
+
118
+ CLANG_WARN_COMMA = YES
119
+
120
+
121
+
122
+ // Implicit Constant Conversions
123
+ //
124
+ // Warn about implicit conversions of constant values that cause the constant value to
125
+ // change, either through a loss of precision, or entirely in its meaning.
126
+
127
+ CLANG_WARN_CONSTANT_CONVERSION = YES
128
+
129
+
130
+
131
+ // Overriding Deprecated Objective-C Methods
132
+ //
133
+ // Warn if an Objective-C class either subclasses a deprecated class or overrides a
134
+ // method that has been marked deprecated or unavailable.
135
+
136
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
137
+
138
+
139
+
140
+ // Direct usage of 'isa'
141
+ //
142
+ // Warn about direct accesses to the Objective-C `isa` pointer instead of using a runtime
143
+ // API.
144
+
145
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
146
+
147
+
148
+
149
+ // Empty Loop Bodies
150
+ //
151
+ // Warn about loop bodies that are suspiciously empty.
152
+
153
+ CLANG_WARN_EMPTY_BODY = YES
154
+
155
+
156
+
157
+ // Implicit Enum Conversions
158
+ //
159
+ // Warn about implicit conversions between different kinds of enum values. For example,
160
+ // this can catch issues when using the wrong enum flag as an argument to a function or
161
+ // method.
162
+
163
+ CLANG_WARN_ENUM_CONVERSION = YES
164
+
165
+
166
+
167
+ // Infinite Recursion
168
+ //
169
+ // Warn if all paths through a function call itself.
170
+
171
+ CLANG_WARN_INFINITE_RECURSION = YES
172
+
173
+
174
+
175
+ // Implicit Integer to Pointer Conversions
176
+ //
177
+ // Warn about implicit conversions between pointers and integers. For example, this can
178
+ // catch issues when one incorrectly intermixes using `NSNumber*`'s and raw integers.
179
+
180
+ CLANG_WARN_INT_CONVERSION = YES
181
+
182
+
183
+
184
+ // Implicit Non-Literal Null Conversions
185
+ //
186
+ // Warn about non-literal expressions that evaluate to zero being treated as a null
187
+ // pointer.
188
+
189
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
190
+
191
+
192
+
193
+ // Implicit retain of 'self' within blocks
194
+ //
195
+ // Warn about implicit retains of `self` within blocks, which can create a retain-cycle.
196
+
197
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
198
+
199
+
200
+
201
+ // Implicit Objective-C Literal Conversions
202
+ //
203
+ // Warn about implicit conversions from Objective-C literals to values of incompatible
204
+ // type.
205
+
206
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
207
+
208
+
209
+
210
+ // Unintentional Root Class
211
+ //
212
+ // Warn about classes that unintentionally do not subclass a root class, such as
213
+ // `NSObject`.
214
+
215
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
216
+
217
+
218
+
219
+ // Quoted Include In Framework Header
220
+ //
221
+ // Warns when a quoted include is used instead of a framework style include in a
222
+ // framework header.
223
+
224
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES
225
+
226
+
227
+
228
+ // Range-based For Loops
229
+ //
230
+ // Warn about ranged-based for loops.
231
+
232
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
233
+
234
+
235
+
236
+ // Strict Prototypes
237
+ //
238
+ // Warn about non-prototype declarations.
239
+
240
+ CLANG_WARN_STRICT_PROTOTYPES = YES
241
+
242
+
243
+
244
+ // Suspicious Moves
245
+ //
246
+ // Warn about suspicious uses of `std::move`.
247
+
248
+ CLANG_WARN_SUSPICIOUS_MOVE = YES
249
+
250
+
251
+
252
+ // Unreachable Code
253
+ //
254
+ // Warns about potentially unreachable code.
255
+
256
+ CLANG_WARN_UNREACHABLE_CODE = YES
257
+
258
+
259
+
260
+ // Code Signing Identity
261
+ //
262
+ // The name, also known as the *common name*, of a valid code-signing certificate in a
263
+ // keychain within your keychain path. A missing or invalid certificate will cause a
264
+ // build error.
265
+
266
+ CODE_SIGN_IDENTITY[sdk=iphoneos*] = iPhone Developer
267
+
268
+
269
+
270
+ // Strip Debug Symbols During Copy
271
+ //
272
+ // Specifies whether binary files that are copied during the build, such as in a Copy
273
+ // Bundle Resources or Copy Files build phase, should be stripped of debugging symbols.
274
+ // It does not cause the linked product of a target to be stripped—use
275
+ // `STRIP_INSTALLED_PRODUCT` for that.
276
+
277
+ COPY_PHASE_STRIP = NO
278
+
279
+
280
+
281
+ // Debug Information Format
282
+ //
283
+ // The type of debug information to produce.
284
+ //
285
+ // * DWARF: Object files and linked products will use DWARF as the debug information
286
+ // format. [dwarf]
287
+ // * DWARF with dSYM File: Object files and linked products will use DWARF as the debug
288
+ // information format, and Xcode will also produce a dSYM file containing the debug
289
+ // information from the individual object files (except that a dSYM file is not needed
290
+ // and will not be created for static library or object file products). [dwarf-with-dsym]
291
+
292
+ DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
293
+
294
+
295
+
296
+ // Enable Strict Checking of objc_msgSend Calls
297
+ //
298
+ // Controls whether `objc_msgSend` calls must be cast to the appropriate function pointer
299
+ // type before being called.
300
+
301
+ ENABLE_STRICT_OBJC_MSGSEND = YES
302
+
303
+
304
+
305
+ // C Language Dialect
306
+ //
307
+ // Choose a standard or non-standard C language dialect.
308
+ //
309
+ // * ANSI C: Accept ISO C90 and ISO C++, turning off GNU extensions that are
310
+ // incompatible. [-ansi]
311
+ // Incompatible GNU extensions include the `asm`, `inline`, and `typeof` keywords (but
312
+ // not the equivalent `\_\_asm\_\_`, `\_\_inline\_\_`, and `\_\_typeof\_\_` forms), and
313
+ // the `//` syntax for comments.
314
+ // This setting also enables trigraphs.
315
+ // * C89: Accept ISO C90 (1990), but not GNU extensions. [-std=c89]
316
+ // * GNU89: Accept ISO C90 and GNU extensions. [-std=gnu89]
317
+ // * C99: Accept ISO C99 (1999), but not GNU extensions. [-std=c99]
318
+ // * GNU99: Accept ISO C99 and GNU extensions. [-std=gnu99]
319
+ // * C11: Accept ISO C11 (2011), but not GNU extensions. [-std=c11]
320
+ // * GNU11: Accept ISO C11 and GNU extensions. [-std=gnu11]
321
+ // * C17: Accept ISO C17 (2018), but not GNU extensions. [-std=c17]
322
+ // * GNU17: Accept ISO C17 and GNU extensions. [-std=gnu11]
323
+ // * Compiler Default: Tells the compiler to use its default C language dialect. This
324
+ // is normally the best choice unless you have specific needs. (Currently equivalent to
325
+ // GNU99.)
326
+
327
+ GCC_C_LANGUAGE_STANDARD = gnu99
328
+
329
+
330
+
331
+ // No Common Blocks
332
+ //
333
+ // In C, allocate even uninitialized global variables in the data section of the object
334
+ // file, rather than generating them as common blocks. This has the effect that if the
335
+ // same variable is declared (without `extern`) in two different compilations, you will
336
+ // get an error when you link them.
337
+
338
+ GCC_NO_COMMON_BLOCKS = YES
339
+
340
+
341
+
342
+ // Implicit Conversion to 32 Bit Type
343
+ //
344
+ // Warn if a value is implicitly converted from a 64-bit type to a 32-bit type. This is a
345
+ // subset of the warnings provided by -Wconversion.
346
+
347
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES
348
+
349
+
350
+
351
+ // Mismatched Return Type
352
+ //
353
+ // Causes warnings to be emitted when a function with a defined return type (not `void`)
354
+ // contains a return statement without a return-value or when it does not contain any
355
+ // return statements. Also emits a warning when a function with a void return type tries
356
+ // to return a value.
357
+
358
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
359
+
360
+
361
+
362
+ // Undeclared Selector
363
+ //
364
+ // Warn if a `@selector(...)` expression referring to an undeclared selector is found. A
365
+ // selector is considered undeclared if no method with that name has been declared before
366
+ // the `@selector(...)` expression, either explicitly in an `@interface` or `@protocol`
367
+ // declaration, or implicitly in an `@implementation` section. This option always
368
+ // performs its checks as soon as a `@selector(...)` expression is found, while
369
+ // `-Wselector` only performs its checks in the final stage of compilation. This also
370
+ // enforces the coding style convention that methods and selectors must be declared
371
+ // before being used.
372
+
373
+ GCC_WARN_UNDECLARED_SELECTOR = YES
374
+
375
+
376
+
377
+ // Uninitialized Variables
378
+ //
379
+ // Warn if a variable might be clobbered by a `setjmp` call or if an automatic variable
380
+ // is used without prior initialization.
381
+ //
382
+ // The compiler may not detect all cases where an automatic variable is initialized or
383
+ // all usage patterns that may lead to use prior to initialization. You can toggle
384
+ // between the normal uninitialized value checking or the more aggressive (conservative)
385
+ // checking, which finds more issues but the checking is much stricter.
386
+
387
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
388
+
389
+
390
+
391
+ // Unused Functions
392
+ //
393
+ // Warn whenever a static function is declared but not defined or a noninline static
394
+ // function is unused.
395
+
396
+ GCC_WARN_UNUSED_FUNCTION = YES
397
+
398
+
399
+
400
+ // Unused Variables
401
+ //
402
+ // Warn whenever a local variable or nonconstant static variable is unused aside from its
403
+ // declaration.
404
+
405
+ GCC_WARN_UNUSED_VARIABLE = YES
406
+
407
+
408
+
409
+ // iOS Deployment Target
410
+ //
411
+ // Code will load on this and later versions of iOS. Framework APIs that are unavailable
412
+ // in earlier versions will be weak-linked; your code should check for null function
413
+ // pointers or specific system versions before calling newer APIs.
414
+
415
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0
416
+
417
+
418
+ // Product Name
419
+ //
420
+ // This is the basename of the product generated by the target.
421
+ //
422
+ // When `GENERATE_INFOPLIST_FILE` is enabled, sets the value of the
423
+ // [CFBundleName](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundlename)
424
+ // key in the `Info.plist` file to the value of this build setting.
425
+
426
+ PRODUCT_NAME = YKRPC-POD-NAME_Example
427
+ PRODUCT_DISPLAY_NAME = YKRPC-POD-NAME_Example
428
+
429
+
430
+
431
+ // Base SDK
432
+ //
433
+ // The name or path of the base SDK being used during the build. The product will be
434
+ // built against the headers and libraries located inside the indicated SDK. This path
435
+ // will be prepended to all search paths, and will be passed through the environment to
436
+ // the compiler and linker. Additional SDKs can be specified in the `ADDITIONAL_SDKS`
437
+ // setting.
438
+
439
+ SDKROOT = iphoneos
440
+
441
+
442
+ // Current Project Version
443
+ //
444
+ // This setting defines the current version of the project. The value must be a integer
445
+ // or floating point number, such as `57` or `365.8`.
446
+ //
447
+ // When `GENERATE_INFOPLIST_FILE` is enabled, sets the value of the
448
+ // [CFBundleVersion](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion)
449
+ // key in the `Info.plist` file to the value of this build setting.
450
+
451
+ CURRENT_PROJECT_VERSION = 1
452
+
453
+
454
+ // Marketing Version
455
+ //
456
+ // This setting defines the user-visible version of the project.
457
+ //
458
+ // When `GENERATE_INFOPLIST_FILE` is enabled, sets the value of the
459
+ // [CFBundleShortVersionString](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring)
460
+ // key in the `Info.plist` file to the value of this build setting.
461
+
462
+ MARKETING_VERSION = 1.0.2
463
+
464
+
465
+ // Development Team
466
+ //
467
+ // The team ID of a development team to use for signing certificates and provisioning
468
+ // profiles.
469
+
470
+ DEVELOPMENT_TEAM = A6BT3R49BJ
@@ -0,0 +1,8 @@
1
+ //
2
+ // Shared.xcconfig
3
+ //
4
+ // Generated by BuildSettingExtractor on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "../Shared.xcconfig"
@@ -0,0 +1,127 @@
1
+ //
2
+ // Debug.xcconfig
3
+ //
4
+ // Generated by BuildSettingExtractor on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "Shared.xcconfig"
9
+
10
+ // Enable Testability
11
+ //
12
+ // Enabling this setting will build the target with options appropriate for running
13
+ // automated tests against its product.
14
+ //
15
+ // This setting can be enabled when building targets for debugging if their products will
16
+ // be tested. This may result in tests running slower than otherwise.
17
+ //
18
+ // When this setting is enabled:
19
+ //
20
+ // * `GCC_SYMBOLS_PRIVATE_EXTERN` is disabled (`-fvisibility=hidden` will not be passed
21
+ // to `clang`).
22
+ // * `-enable-testing` is passed to the Swift compiler.
23
+ // * `-export_dynamic` is passed to the linker.
24
+ // * `STRIP_INSTALLED_PRODUCT` is disabled (`strip` will not be run on the produced
25
+ // binary).
26
+
27
+ ENABLE_TESTABILITY = YES
28
+
29
+
30
+
31
+ // Generate Position-Dependent Code
32
+ //
33
+ // Faster function calls for applications. Not appropriate for shared libraries, which
34
+ // need to be position-independent.
35
+
36
+ GCC_DYNAMIC_NO_PIC = NO
37
+
38
+
39
+
40
+ // Optimization Level
41
+ //
42
+ // Specifies the degree to which the generated code is optimized for speed and binary
43
+ // size.
44
+ //
45
+ // * None: Do not optimize. [-O0]
46
+ // With this setting, the compiler's goal is to reduce the cost of compilation and to
47
+ // make debugging produce the expected results. Statements are independent—if you stop
48
+ // the program with a breakpoint between statements, you can then assign a new value to
49
+ // any variable or change the program counter to any other statement in the function and
50
+ // get exactly the results you would expect from the source code.
51
+ // * Fast: Optimizing compilation takes somewhat more time, and a lot more memory for a
52
+ // large function. [-O1]
53
+ // With this setting, the compiler tries to reduce code size and execution time,
54
+ // without performing any optimizations that take a great deal of compilation time. In
55
+ // Apple's compiler, strict aliasing, block reordering, and inter-block scheduling are
56
+ // disabled by default when optimizing.
57
+ // * Faster: The compiler performs nearly all supported optimizations that do not
58
+ // involve a space-speed tradeoff. [-O2]
59
+ // With this setting, the compiler does not perform loop unrolling or function
60
+ // inlining, or register renaming. As compared to the `Fast` setting, this setting
61
+ // increases both compilation time and the performance of the generated code.
62
+ // * Fastest: Turns on all optimizations specified by the `Faster` setting and also
63
+ // turns on function inlining and register renaming options. This setting may result in a
64
+ // larger binary. [-O3]
65
+ // * Fastest, Smallest: Optimize for size. This setting enables all `Faster`
66
+ // optimizations that do not typically increase code size. It also performs further
67
+ // optimizations designed to reduce code size. [-Os]
68
+ // * Fastest, Aggressive Optimizations: This setting enables `Fastest` but also enables
69
+ // aggressive optimizations that may break strict standards compliance but should work
70
+ // well on well-behaved code. [-Ofast]
71
+ // * Smallest, Aggressive Size Optimizations: This setting enables additional size
72
+ // savings by isolating repetitive code patterns into a compiler generated function.
73
+ // [-Oz]
74
+
75
+ GCC_OPTIMIZATION_LEVEL = 0
76
+
77
+
78
+ // Preprocessor Macros
79
+ //
80
+ // Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
81
+
82
+ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 $(inherited)
83
+
84
+
85
+
86
+ // Symbols Hidden by Default
87
+ //
88
+ // When enabled, all symbols are declared `private extern` unless explicitly marked to be
89
+ // exported using `\_\_attribute\_\_((visibility("default")))` in code. If not enabled,
90
+ // all symbols are exported unless explicitly marked as `private extern`. See
91
+ // [Controlling Symbol
92
+ // Visibility](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html#//apple_ref/doc/uid/TP40001670-CJBGBHEJ)
93
+ // in [C++ Runtime Environment Programming
94
+ // Guide](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/CPPRuntimeEnv.html).
95
+
96
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO
97
+
98
+
99
+
100
+ // Produce Debugging Information
101
+ //
102
+ // Debugging information is required for shader debugging and profiling.
103
+
104
+ MTL_ENABLE_DEBUG_INFO = YES
105
+
106
+
107
+
108
+ // Build Active Architecture Only
109
+ //
110
+ // If enabled, only the active architecture is built. This setting will be ignored when
111
+ // building with a run destination which does not define a specific architecture, such as
112
+ // a 'Generic Device' run destination.
113
+
114
+ ONLY_ACTIVE_ARCH = YES
115
+
116
+
117
+
118
+ // Swift Optimization Level
119
+ //
120
+ // * None: Compile without any optimization. [-Onone]
121
+ // * Optimize for Speed: [-O]
122
+ // * Optimize for Size: [-Osize]
123
+ // * Whole Module Optimization: [-O -whole-module-optimization]
124
+
125
+ SWIFT_OPTIMIZATION_LEVEL = -Onone
126
+
127
+ CODE_SIGN_IDENTITY = iPhone Developer
@@ -0,0 +1,60 @@
1
+ //
2
+ // Project-Release.xcconfig
3
+ //
4
+ // Generated by BuildSettingExtractor on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "Shared.xcconfig"
9
+
10
+ // Enable Foundation Assertions
11
+ //
12
+ // Controls whether assertion logic provided by `NSAssert` is included in the
13
+ // preprocessed source code or is elided during preprocessing. Disabling assertions can
14
+ // improve code performance.
15
+
16
+ ENABLE_NS_ASSERTIONS = NO
17
+
18
+
19
+
20
+ // Produce Debugging Information
21
+ //
22
+ // Debugging information is required for shader debugging and profiling.
23
+
24
+ MTL_ENABLE_DEBUG_INFO = NO
25
+
26
+
27
+
28
+ // Swift Compilation Mode
29
+ //
30
+ // This setting controls the way the Swift files in a module are rebuilt.
31
+ //
32
+ // * Incremental: Only rebuild the Swift source files in the module that are out of
33
+ // date, running multiple compiler processes as needed.
34
+ // * Whole Module: Always rebuild all Swift source files in the module, in a single
35
+ // compiler process.
36
+
37
+ SWIFT_COMPILATION_MODE = wholemodule
38
+
39
+
40
+
41
+ // Swift Optimization Level
42
+ //
43
+ // * None: Compile without any optimization. [-Onone]
44
+ // * Optimize for Speed: [-O]
45
+ // * Optimize for Size: [-Osize]
46
+ // * Whole Module Optimization: [-O -whole-module-optimization]
47
+
48
+ SWIFT_OPTIMIZATION_LEVEL = -O
49
+
50
+
51
+
52
+ // Validate Built Product
53
+ //
54
+ // If enabled, perform validation checks on the product as part of the build process.
55
+
56
+ VALIDATE_PRODUCT = YES
57
+
58
+
59
+ CODE_SIGN_IDENTITY = Apple Distribution
60
+ CODE_SIGN_IDENTITY[sdk=iphoneos*] = iPhone Distribution
@@ -0,0 +1,20 @@
1
+ //
2
+ // Shared.xcconfig
3
+ //
4
+ // Generated by BuildSettingExtractor on 2023/12/27
5
+ // https://buildsettingextractor.com
6
+ //
7
+
8
+ #include "../Shared.xcconfig"
9
+
10
+ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) kENTERPRISE=1
11
+
12
+ // Product Name
13
+ //
14
+ // This is the basename of the product generated by the target.
15
+ //
16
+ // When `GENERATE_INFOPLIST_FILE` is enabled, sets the value of the
17
+ // [CFBundleName](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundlename)
18
+ // key in the `Info.plist` file to the value of this build setting.
19
+
20
+ PRODUCT_DISPLAY_NAME = YKRPC-POD-NAME_ExampleQ