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.
- checksums.yaml +4 -4
- data/configPodTemplate/example/CommonFiles/.gitkeep +0 -0
- data/configPodTemplate/example/CommonFiles/CommonFile.swift +9 -0
- data/configPodTemplate/example/NotificationContent/Base.lproj/MainInterface.storyboard +43 -0
- data/configPodTemplate/example/NotificationContent/Info.plist +40 -0
- data/configPodTemplate/example/NotificationContent/NotificationViewController.swift +25 -0
- data/configPodTemplate/example/NotificationService/Info.plist +38 -0
- data/configPodTemplate/example/NotificationService/NotificationService.swift +36 -0
- data/configPodTemplate/example/Podfile +53 -0
- data/configPodTemplate/example/READ.md +76 -0
- data/configPodTemplate/example/README_resource/appExtensionNameDiscussion.png +0 -0
- data/configPodTemplate/example/TargetMain/AppDelegate.swift +32 -0
- data/configPodTemplate/example/TargetMain/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- data/configPodTemplate/example/TargetMain/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
- data/configPodTemplate/example/TargetMain/Assets.xcassets/Contents.json +6 -0
- data/configPodTemplate/example/TargetMain/Base.lproj/LaunchScreen.storyboard +45 -0
- data/configPodTemplate/example/TargetMain/Info.plist +47 -0
- data/configPodTemplate/example/TargetMain/ViewController.swift +29 -0
- data/configPodTemplate/example/TargetMain/ViewController.xib +46 -0
- data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.h +16 -0
- data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.m +18 -0
- data/configPodTemplate/example/TargetMain/YKRPC_POD_NAME_Example-Bridging-Header.h +4 -0
- data/configPodTemplate/example/config/iOS-config/target-main/Shared.xcconfig +105 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-custom/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/Shared.xcconfig +1 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/Shared.xcconfig +105 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/Shared.xcconfig +1 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/Shared.xcconfig +5 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/Shared.xcconfig +5 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/Shared.xcconfig +7 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/Shared.xcconfig +3 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/Shared.xcconfig +7 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/Shared.xcconfig +3 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-targets-Q.yml +137 -0
- data/configPodTemplate/example/config/iOS-targets.yml +135 -0
- data/configPodTemplate/example/config/project-config/Shared.xcconfig +470 -0
- data/configPodTemplate/example/config/project-config/config-custom/Shared.xcconfig +8 -0
- data/configPodTemplate/example/config/project-config/config-custom/debug.xcconfig +127 -0
- data/configPodTemplate/example/config/project-config/config-custom/release.xcconfig +60 -0
- data/configPodTemplate/example/config/project-config/config-enterprise/Shared.xcconfig +20 -0
- data/configPodTemplate/example/config/project-config/config-enterprise/debug.xcconfig +127 -0
- data/configPodTemplate/example/config/project-config/config-enterprise/release.xcconfig +59 -0
- data/configPodTemplate/example/project.yml +37 -0
- data/configPodTemplate/objc/LICENSE +19 -0
- data/configPodTemplate/objc/README.md +60 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Private/.gitkeep +0 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +16 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +12 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME.podspec +62 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +16 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +27 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +15 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +27 -0
- data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
- data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +19 -0
- data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +20 -0
- data/configPodTemplate/swift/LICENSE +19 -0
- data/configPodTemplate/swift/README.md +60 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +6 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME.podspec +61 -0
- data/lib/cocoapods-ykutility/command/Ykutility.rb +1 -0
- data/lib/cocoapods-ykutility/command/create/yk_create_pod_action.rb +7 -7
- data/lib/cocoapods-ykutility/command/create/yk_exchange_tool.rb +1 -0
- data/lib/cocoapods-ykutility/command/gen/yk_gen_create_action.rb +162 -0
- data/lib/cocoapods-ykutility/command/gen.rb +74 -0
- data/lib/cocoapods-ykutility/gem_version.rb +4 -1
- data/podTemplate/example/Podfile +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/AppDelegate.swift +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/LaunchScreen.storyboard +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/Main.storyboard +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/SceneDelegate.swift +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/ViewController.swift +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example.xcodeproj/project.pbxproj +1 -1
- data/podTemplate/objc/LICENSE +1 -1
- data/podTemplate/objc/README.md +4 -4
- data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +1 -1
- data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +1 -1
- data/podTemplate/objc/YKRPC_POD_NAME.podspec +3 -3
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +1 -1
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +1 -1
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +1 -1
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +1 -1
- data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +1 -1
- data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +1 -1
- data/podTemplate/swift/README.md +4 -4
- data/podTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +1 -1
- data/podTemplate/swift/YKRPC_POD_NAME.podspec +3 -3
- metadata +98 -3
@@ -0,0 +1,129 @@
|
|
1
|
+
//
|
2
|
+
// Debug.xcconfig
|
3
|
+
//
|
4
|
+
// Generated by author on 2023/12/27
|
5
|
+
// https://buildsettingextractor.com
|
6
|
+
//
|
7
|
+
|
8
|
+
#include "Shared.xcconfig"
|
9
|
+
#include "Pods/Target Support Files/Pods-NotificationContentQ/Pods-NotificationContentQ.debug.xcconfig"
|
10
|
+
|
11
|
+
// Enable Testability
|
12
|
+
//
|
13
|
+
// Enabling this setting will build the target with options appropriate for running
|
14
|
+
// automated tests against its product.
|
15
|
+
//
|
16
|
+
// This setting can be enabled when building targets for debugging if their products will
|
17
|
+
// be tested. This may result in tests running slower than otherwise.
|
18
|
+
//
|
19
|
+
// When this setting is enabled:
|
20
|
+
//
|
21
|
+
// * `GCC_SYMBOLS_PRIVATE_EXTERN` is disabled (`-fvisibility=hidden` will not be passed
|
22
|
+
// to `clang`).
|
23
|
+
// * `-enable-testing` is passed to the Swift compiler.
|
24
|
+
// * `-export_dynamic` is passed to the linker.
|
25
|
+
// * `STRIP_INSTALLED_PRODUCT` is disabled (`strip` will not be run on the produced
|
26
|
+
// binary).
|
27
|
+
|
28
|
+
ENABLE_TESTABILITY = YES
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
// Generate Position-Dependent Code
|
33
|
+
//
|
34
|
+
// Faster function calls for applications. Not appropriate for shared libraries, which
|
35
|
+
// need to be position-independent.
|
36
|
+
|
37
|
+
GCC_DYNAMIC_NO_PIC = NO
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
// Optimization Level
|
42
|
+
//
|
43
|
+
// Specifies the degree to which the generated code is optimized for speed and binary
|
44
|
+
// size.
|
45
|
+
//
|
46
|
+
// * None: Do not optimize. [-O0]
|
47
|
+
// With this setting, the compiler's goal is to reduce the cost of compilation and to
|
48
|
+
// make debugging produce the expected results. Statements are independent—if you stop
|
49
|
+
// the program with a breakpoint between statements, you can then assign a new value to
|
50
|
+
// any variable or change the program counter to any other statement in the function and
|
51
|
+
// get exactly the results you would expect from the source code.
|
52
|
+
// * Fast: Optimizing compilation takes somewhat more time, and a lot more memory for a
|
53
|
+
// large function. [-O1]
|
54
|
+
// With this setting, the compiler tries to reduce code size and execution time,
|
55
|
+
// without performing any optimizations that take a great deal of compilation time. In
|
56
|
+
// Apple's compiler, strict aliasing, block reordering, and inter-block scheduling are
|
57
|
+
// disabled by default when optimizing.
|
58
|
+
// * Faster: The compiler performs nearly all supported optimizations that do not
|
59
|
+
// involve a space-speed tradeoff. [-O2]
|
60
|
+
// With this setting, the compiler does not perform loop unrolling or function
|
61
|
+
// inlining, or register renaming. As compared to the `Fast` setting, this setting
|
62
|
+
// increases both compilation time and the performance of the generated code.
|
63
|
+
// * Fastest: Turns on all optimizations specified by the `Faster` setting and also
|
64
|
+
// turns on function inlining and register renaming options. This setting may result in a
|
65
|
+
// larger binary. [-O3]
|
66
|
+
// * Fastest, Smallest: Optimize for size. This setting enables all `Faster`
|
67
|
+
// optimizations that do not typically increase code size. It also performs further
|
68
|
+
// optimizations designed to reduce code size. [-Os]
|
69
|
+
// * Fastest, Aggressive Optimizations: This setting enables `Fastest` but also enables
|
70
|
+
// aggressive optimizations that may break strict standards compliance but should work
|
71
|
+
// well on well-behaved code. [-Ofast]
|
72
|
+
// * Smallest, Aggressive Size Optimizations: This setting enables additional size
|
73
|
+
// savings by isolating repetitive code patterns into a compiler generated function.
|
74
|
+
// [-Oz]
|
75
|
+
|
76
|
+
GCC_OPTIMIZATION_LEVEL = 0
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
// Preprocessor Macros
|
81
|
+
//
|
82
|
+
// Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
|
83
|
+
|
84
|
+
//GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
// Symbols Hidden by Default
|
89
|
+
//
|
90
|
+
// When enabled, all symbols are declared `private extern` unless explicitly marked to be
|
91
|
+
// exported using `\_\_attribute\_\_((visibility("default")))` in code. If not enabled,
|
92
|
+
// all symbols are exported unless explicitly marked as `private extern`. See
|
93
|
+
// [Controlling Symbol
|
94
|
+
// Visibility](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html#//apple_ref/doc/uid/TP40001670-CJBGBHEJ)
|
95
|
+
// in [C++ Runtime Environment Programming
|
96
|
+
// Guide](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/CPPRuntimeEnv.html).
|
97
|
+
|
98
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
// Produce Debugging Information
|
103
|
+
//
|
104
|
+
// Debugging information is required for shader debugging and profiling.
|
105
|
+
|
106
|
+
MTL_ENABLE_DEBUG_INFO = YES
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
// Build Active Architecture Only
|
111
|
+
//
|
112
|
+
// If enabled, only the active architecture is built. This setting will be ignored when
|
113
|
+
// building with a run destination which does not define a specific architecture, such as
|
114
|
+
// a 'Generic Device' run destination.
|
115
|
+
|
116
|
+
ONLY_ACTIVE_ARCH = YES
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
// Swift Optimization Level
|
121
|
+
//
|
122
|
+
// * None: Compile without any optimization. [-Onone]
|
123
|
+
// * Optimize for Speed: [-O]
|
124
|
+
// * Optimize for Size: [-Osize]
|
125
|
+
// * Whole Module Optimization: [-O -whole-module-optimization]
|
126
|
+
|
127
|
+
SWIFT_OPTIMIZATION_LEVEL = -Onone
|
128
|
+
|
129
|
+
GCC_PREPROCESSOR_DEFINITIONS =$(inherited)
|
@@ -0,0 +1,129 @@
|
|
1
|
+
//
|
2
|
+
// Debug.xcconfig
|
3
|
+
//
|
4
|
+
// Generated by author on 2023/12/27
|
5
|
+
// https://buildsettingextractor.com
|
6
|
+
//
|
7
|
+
|
8
|
+
#include "Shared.xcconfig"
|
9
|
+
#include "Pods/Target Support Files/Pods-NotificationContentQ/Pods-NotificationContentQ.debugq.xcconfig"
|
10
|
+
|
11
|
+
// Enable Testability
|
12
|
+
//
|
13
|
+
// Enabling this setting will build the target with options appropriate for running
|
14
|
+
// automated tests against its product.
|
15
|
+
//
|
16
|
+
// This setting can be enabled when building targets for debugging if their products will
|
17
|
+
// be tested. This may result in tests running slower than otherwise.
|
18
|
+
//
|
19
|
+
// When this setting is enabled:
|
20
|
+
//
|
21
|
+
// * `GCC_SYMBOLS_PRIVATE_EXTERN` is disabled (`-fvisibility=hidden` will not be passed
|
22
|
+
// to `clang`).
|
23
|
+
// * `-enable-testing` is passed to the Swift compiler.
|
24
|
+
// * `-export_dynamic` is passed to the linker.
|
25
|
+
// * `STRIP_INSTALLED_PRODUCT` is disabled (`strip` will not be run on the produced
|
26
|
+
// binary).
|
27
|
+
|
28
|
+
ENABLE_TESTABILITY = YES
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
// Generate Position-Dependent Code
|
33
|
+
//
|
34
|
+
// Faster function calls for applications. Not appropriate for shared libraries, which
|
35
|
+
// need to be position-independent.
|
36
|
+
|
37
|
+
GCC_DYNAMIC_NO_PIC = NO
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
// Optimization Level
|
42
|
+
//
|
43
|
+
// Specifies the degree to which the generated code is optimized for speed and binary
|
44
|
+
// size.
|
45
|
+
//
|
46
|
+
// * None: Do not optimize. [-O0]
|
47
|
+
// With this setting, the compiler's goal is to reduce the cost of compilation and to
|
48
|
+
// make debugging produce the expected results. Statements are independent—if you stop
|
49
|
+
// the program with a breakpoint between statements, you can then assign a new value to
|
50
|
+
// any variable or change the program counter to any other statement in the function and
|
51
|
+
// get exactly the results you would expect from the source code.
|
52
|
+
// * Fast: Optimizing compilation takes somewhat more time, and a lot more memory for a
|
53
|
+
// large function. [-O1]
|
54
|
+
// With this setting, the compiler tries to reduce code size and execution time,
|
55
|
+
// without performing any optimizations that take a great deal of compilation time. In
|
56
|
+
// Apple's compiler, strict aliasing, block reordering, and inter-block scheduling are
|
57
|
+
// disabled by default when optimizing.
|
58
|
+
// * Faster: The compiler performs nearly all supported optimizations that do not
|
59
|
+
// involve a space-speed tradeoff. [-O2]
|
60
|
+
// With this setting, the compiler does not perform loop unrolling or function
|
61
|
+
// inlining, or register renaming. As compared to the `Fast` setting, this setting
|
62
|
+
// increases both compilation time and the performance of the generated code.
|
63
|
+
// * Fastest: Turns on all optimizations specified by the `Faster` setting and also
|
64
|
+
// turns on function inlining and register renaming options. This setting may result in a
|
65
|
+
// larger binary. [-O3]
|
66
|
+
// * Fastest, Smallest: Optimize for size. This setting enables all `Faster`
|
67
|
+
// optimizations that do not typically increase code size. It also performs further
|
68
|
+
// optimizations designed to reduce code size. [-Os]
|
69
|
+
// * Fastest, Aggressive Optimizations: This setting enables `Fastest` but also enables
|
70
|
+
// aggressive optimizations that may break strict standards compliance but should work
|
71
|
+
// well on well-behaved code. [-Ofast]
|
72
|
+
// * Smallest, Aggressive Size Optimizations: This setting enables additional size
|
73
|
+
// savings by isolating repetitive code patterns into a compiler generated function.
|
74
|
+
// [-Oz]
|
75
|
+
|
76
|
+
GCC_OPTIMIZATION_LEVEL = 0
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
// Preprocessor Macros
|
81
|
+
//
|
82
|
+
// Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
|
83
|
+
|
84
|
+
//GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
// Symbols Hidden by Default
|
89
|
+
//
|
90
|
+
// When enabled, all symbols are declared `private extern` unless explicitly marked to be
|
91
|
+
// exported using `\_\_attribute\_\_((visibility("default")))` in code. If not enabled,
|
92
|
+
// all symbols are exported unless explicitly marked as `private extern`. See
|
93
|
+
// [Controlling Symbol
|
94
|
+
// Visibility](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html#//apple_ref/doc/uid/TP40001670-CJBGBHEJ)
|
95
|
+
// in [C++ Runtime Environment Programming
|
96
|
+
// Guide](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/CPPRuntimeEnv.html).
|
97
|
+
|
98
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
// Produce Debugging Information
|
103
|
+
//
|
104
|
+
// Debugging information is required for shader debugging and profiling.
|
105
|
+
|
106
|
+
MTL_ENABLE_DEBUG_INFO = YES
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
// Build Active Architecture Only
|
111
|
+
//
|
112
|
+
// If enabled, only the active architecture is built. This setting will be ignored when
|
113
|
+
// building with a run destination which does not define a specific architecture, such as
|
114
|
+
// a 'Generic Device' run destination.
|
115
|
+
|
116
|
+
ONLY_ACTIVE_ARCH = YES
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
// Swift Optimization Level
|
121
|
+
//
|
122
|
+
// * None: Compile without any optimization. [-Onone]
|
123
|
+
// * Optimize for Speed: [-O]
|
124
|
+
// * Optimize for Size: [-Osize]
|
125
|
+
// * Whole Module Optimization: [-O -whole-module-optimization]
|
126
|
+
|
127
|
+
SWIFT_OPTIMIZATION_LEVEL = -Onone
|
128
|
+
|
129
|
+
GCC_PREPROCESSOR_DEFINITIONS =$(inherited)
|
@@ -0,0 +1,129 @@
|
|
1
|
+
//
|
2
|
+
// Debug.xcconfig
|
3
|
+
//
|
4
|
+
// Generated by author on 2023/12/27
|
5
|
+
// https://buildsettingextractor.com
|
6
|
+
//
|
7
|
+
|
8
|
+
#include "Shared.xcconfig"
|
9
|
+
#include "Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig"
|
10
|
+
|
11
|
+
// Enable Testability
|
12
|
+
//
|
13
|
+
// Enabling this setting will build the target with options appropriate for running
|
14
|
+
// automated tests against its product.
|
15
|
+
//
|
16
|
+
// This setting can be enabled when building targets for debugging if their products will
|
17
|
+
// be tested. This may result in tests running slower than otherwise.
|
18
|
+
//
|
19
|
+
// When this setting is enabled:
|
20
|
+
//
|
21
|
+
// * `GCC_SYMBOLS_PRIVATE_EXTERN` is disabled (`-fvisibility=hidden` will not be passed
|
22
|
+
// to `clang`).
|
23
|
+
// * `-enable-testing` is passed to the Swift compiler.
|
24
|
+
// * `-export_dynamic` is passed to the linker.
|
25
|
+
// * `STRIP_INSTALLED_PRODUCT` is disabled (`strip` will not be run on the produced
|
26
|
+
// binary).
|
27
|
+
|
28
|
+
ENABLE_TESTABILITY = YES
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
// Generate Position-Dependent Code
|
33
|
+
//
|
34
|
+
// Faster function calls for applications. Not appropriate for shared libraries, which
|
35
|
+
// need to be position-independent.
|
36
|
+
|
37
|
+
GCC_DYNAMIC_NO_PIC = NO
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
// Optimization Level
|
42
|
+
//
|
43
|
+
// Specifies the degree to which the generated code is optimized for speed and binary
|
44
|
+
// size.
|
45
|
+
//
|
46
|
+
// * None: Do not optimize. [-O0]
|
47
|
+
// With this setting, the compiler's goal is to reduce the cost of compilation and to
|
48
|
+
// make debugging produce the expected results. Statements are independent—if you stop
|
49
|
+
// the program with a breakpoint between statements, you can then assign a new value to
|
50
|
+
// any variable or change the program counter to any other statement in the function and
|
51
|
+
// get exactly the results you would expect from the source code.
|
52
|
+
// * Fast: Optimizing compilation takes somewhat more time, and a lot more memory for a
|
53
|
+
// large function. [-O1]
|
54
|
+
// With this setting, the compiler tries to reduce code size and execution time,
|
55
|
+
// without performing any optimizations that take a great deal of compilation time. In
|
56
|
+
// Apple's compiler, strict aliasing, block reordering, and inter-block scheduling are
|
57
|
+
// disabled by default when optimizing.
|
58
|
+
// * Faster: The compiler performs nearly all supported optimizations that do not
|
59
|
+
// involve a space-speed tradeoff. [-O2]
|
60
|
+
// With this setting, the compiler does not perform loop unrolling or function
|
61
|
+
// inlining, or register renaming. As compared to the `Fast` setting, this setting
|
62
|
+
// increases both compilation time and the performance of the generated code.
|
63
|
+
// * Fastest: Turns on all optimizations specified by the `Faster` setting and also
|
64
|
+
// turns on function inlining and register renaming options. This setting may result in a
|
65
|
+
// larger binary. [-O3]
|
66
|
+
// * Fastest, Smallest: Optimize for size. This setting enables all `Faster`
|
67
|
+
// optimizations that do not typically increase code size. It also performs further
|
68
|
+
// optimizations designed to reduce code size. [-Os]
|
69
|
+
// * Fastest, Aggressive Optimizations: This setting enables `Fastest` but also enables
|
70
|
+
// aggressive optimizations that may break strict standards compliance but should work
|
71
|
+
// well on well-behaved code. [-Ofast]
|
72
|
+
// * Smallest, Aggressive Size Optimizations: This setting enables additional size
|
73
|
+
// savings by isolating repetitive code patterns into a compiler generated function.
|
74
|
+
// [-Oz]
|
75
|
+
|
76
|
+
GCC_OPTIMIZATION_LEVEL = 0
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
// Preprocessor Macros
|
81
|
+
//
|
82
|
+
// Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
|
83
|
+
|
84
|
+
//GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
// Symbols Hidden by Default
|
89
|
+
//
|
90
|
+
// When enabled, all symbols are declared `private extern` unless explicitly marked to be
|
91
|
+
// exported using `\_\_attribute\_\_((visibility("default")))` in code. If not enabled,
|
92
|
+
// all symbols are exported unless explicitly marked as `private extern`. See
|
93
|
+
// [Controlling Symbol
|
94
|
+
// Visibility](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html#//apple_ref/doc/uid/TP40001670-CJBGBHEJ)
|
95
|
+
// in [C++ Runtime Environment Programming
|
96
|
+
// Guide](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/CPPRuntimeEnv.html).
|
97
|
+
|
98
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
// Produce Debugging Information
|
103
|
+
//
|
104
|
+
// Debugging information is required for shader debugging and profiling.
|
105
|
+
|
106
|
+
MTL_ENABLE_DEBUG_INFO = YES
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
// Build Active Architecture Only
|
111
|
+
//
|
112
|
+
// If enabled, only the active architecture is built. This setting will be ignored when
|
113
|
+
// building with a run destination which does not define a specific architecture, such as
|
114
|
+
// a 'Generic Device' run destination.
|
115
|
+
|
116
|
+
ONLY_ACTIVE_ARCH = YES
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
// Swift Optimization Level
|
121
|
+
//
|
122
|
+
// * None: Compile without any optimization. [-Onone]
|
123
|
+
// * Optimize for Speed: [-O]
|
124
|
+
// * Optimize for Size: [-Osize]
|
125
|
+
// * Whole Module Optimization: [-O -whole-module-optimization]
|
126
|
+
|
127
|
+
SWIFT_OPTIMIZATION_LEVEL = -Onone
|
128
|
+
|
129
|
+
GCC_PREPROCESSOR_DEFINITIONS =$(inherited)
|
@@ -0,0 +1,129 @@
|
|
1
|
+
//
|
2
|
+
// Debug.xcconfig
|
3
|
+
//
|
4
|
+
// Generated by author on 2023/12/27
|
5
|
+
// https://buildsettingextractor.com
|
6
|
+
//
|
7
|
+
|
8
|
+
#include "Shared.xcconfig"
|
9
|
+
#include "Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debugq.xcconfig"
|
10
|
+
|
11
|
+
// Enable Testability
|
12
|
+
//
|
13
|
+
// Enabling this setting will build the target with options appropriate for running
|
14
|
+
// automated tests against its product.
|
15
|
+
//
|
16
|
+
// This setting can be enabled when building targets for debugging if their products will
|
17
|
+
// be tested. This may result in tests running slower than otherwise.
|
18
|
+
//
|
19
|
+
// When this setting is enabled:
|
20
|
+
//
|
21
|
+
// * `GCC_SYMBOLS_PRIVATE_EXTERN` is disabled (`-fvisibility=hidden` will not be passed
|
22
|
+
// to `clang`).
|
23
|
+
// * `-enable-testing` is passed to the Swift compiler.
|
24
|
+
// * `-export_dynamic` is passed to the linker.
|
25
|
+
// * `STRIP_INSTALLED_PRODUCT` is disabled (`strip` will not be run on the produced
|
26
|
+
// binary).
|
27
|
+
|
28
|
+
ENABLE_TESTABILITY = YES
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
// Generate Position-Dependent Code
|
33
|
+
//
|
34
|
+
// Faster function calls for applications. Not appropriate for shared libraries, which
|
35
|
+
// need to be position-independent.
|
36
|
+
|
37
|
+
GCC_DYNAMIC_NO_PIC = NO
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
// Optimization Level
|
42
|
+
//
|
43
|
+
// Specifies the degree to which the generated code is optimized for speed and binary
|
44
|
+
// size.
|
45
|
+
//
|
46
|
+
// * None: Do not optimize. [-O0]
|
47
|
+
// With this setting, the compiler's goal is to reduce the cost of compilation and to
|
48
|
+
// make debugging produce the expected results. Statements are independent—if you stop
|
49
|
+
// the program with a breakpoint between statements, you can then assign a new value to
|
50
|
+
// any variable or change the program counter to any other statement in the function and
|
51
|
+
// get exactly the results you would expect from the source code.
|
52
|
+
// * Fast: Optimizing compilation takes somewhat more time, and a lot more memory for a
|
53
|
+
// large function. [-O1]
|
54
|
+
// With this setting, the compiler tries to reduce code size and execution time,
|
55
|
+
// without performing any optimizations that take a great deal of compilation time. In
|
56
|
+
// Apple's compiler, strict aliasing, block reordering, and inter-block scheduling are
|
57
|
+
// disabled by default when optimizing.
|
58
|
+
// * Faster: The compiler performs nearly all supported optimizations that do not
|
59
|
+
// involve a space-speed tradeoff. [-O2]
|
60
|
+
// With this setting, the compiler does not perform loop unrolling or function
|
61
|
+
// inlining, or register renaming. As compared to the `Fast` setting, this setting
|
62
|
+
// increases both compilation time and the performance of the generated code.
|
63
|
+
// * Fastest: Turns on all optimizations specified by the `Faster` setting and also
|
64
|
+
// turns on function inlining and register renaming options. This setting may result in a
|
65
|
+
// larger binary. [-O3]
|
66
|
+
// * Fastest, Smallest: Optimize for size. This setting enables all `Faster`
|
67
|
+
// optimizations that do not typically increase code size. It also performs further
|
68
|
+
// optimizations designed to reduce code size. [-Os]
|
69
|
+
// * Fastest, Aggressive Optimizations: This setting enables `Fastest` but also enables
|
70
|
+
// aggressive optimizations that may break strict standards compliance but should work
|
71
|
+
// well on well-behaved code. [-Ofast]
|
72
|
+
// * Smallest, Aggressive Size Optimizations: This setting enables additional size
|
73
|
+
// savings by isolating repetitive code patterns into a compiler generated function.
|
74
|
+
// [-Oz]
|
75
|
+
|
76
|
+
GCC_OPTIMIZATION_LEVEL = 0
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
// Preprocessor Macros
|
81
|
+
//
|
82
|
+
// Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
|
83
|
+
|
84
|
+
//GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
// Symbols Hidden by Default
|
89
|
+
//
|
90
|
+
// When enabled, all symbols are declared `private extern` unless explicitly marked to be
|
91
|
+
// exported using `\_\_attribute\_\_((visibility("default")))` in code. If not enabled,
|
92
|
+
// all symbols are exported unless explicitly marked as `private extern`. See
|
93
|
+
// [Controlling Symbol
|
94
|
+
// Visibility](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/Articles/SymbolVisibility.html#//apple_ref/doc/uid/TP40001670-CJBGBHEJ)
|
95
|
+
// in [C++ Runtime Environment Programming
|
96
|
+
// Guide](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/CppRuntimeEnv/CPPRuntimeEnv.html).
|
97
|
+
|
98
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
// Produce Debugging Information
|
103
|
+
//
|
104
|
+
// Debugging information is required for shader debugging and profiling.
|
105
|
+
|
106
|
+
MTL_ENABLE_DEBUG_INFO = YES
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
// Build Active Architecture Only
|
111
|
+
//
|
112
|
+
// If enabled, only the active architecture is built. This setting will be ignored when
|
113
|
+
// building with a run destination which does not define a specific architecture, such as
|
114
|
+
// a 'Generic Device' run destination.
|
115
|
+
|
116
|
+
ONLY_ACTIVE_ARCH = YES
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
// Swift Optimization Level
|
121
|
+
//
|
122
|
+
// * None: Compile without any optimization. [-Onone]
|
123
|
+
// * Optimize for Speed: [-O]
|
124
|
+
// * Optimize for Size: [-Osize]
|
125
|
+
// * Whole Module Optimization: [-O -whole-module-optimization]
|
126
|
+
|
127
|
+
SWIFT_OPTIMIZATION_LEVEL = -Onone
|
128
|
+
|
129
|
+
GCC_PREPROCESSOR_DEFINITIONS =$(inherited)
|