File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,15 @@ - (void)writeConfigFilesToDestinationFolder:(NSURL *)destinationURL {
120
120
configFileString = [configFileString stringByAppendingString: includeDirective];
121
121
}
122
122
123
+ // If there are no settings at all, add a comment that the lack of settings is on purpose
124
+ if ([settings isEqualToString: @" " ]) {
125
+ settings = [settings stringByAppendingString: @" //********************************************//\n " ];
126
+ settings = [settings stringByAppendingString: @" //* Currently no build settings in this file *//\n " ];
127
+ settings = [settings stringByAppendingString: @" //********************************************//" ];
128
+
129
+ ;
130
+ }
131
+
123
132
configFileString = [configFileString stringByAppendingString: settings];
124
133
125
134
// Trim whitespace and newlines
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Using the app:
17
17
18
18
- BuildSettingExtractor does not alter the original Xcode project file.
19
19
- BuildSettingExtractor does not update existing xcconfig files, it does a one-time extraction.
20
- - BuildSettingExtractor does not hoist common target build settings to the project level.
20
+ - BuildSettingExtractor does not hoist shared target build settings to the project level.
21
21
- Do not taunt BuildSettingExtractor.
22
22
23
23
** Version History**
You can’t perform that action at this time.
0 commit comments