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 {
120120 configFileString = [configFileString stringByAppendingString: includeDirective];
121121 }
122122
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+
123132 configFileString = [configFileString stringByAppendingString: settings];
124133
125134 // Trim whitespace and newlines
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Using the app:
1717
1818- BuildSettingExtractor does not alter the original Xcode project file.
1919- 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.
2121- Do not taunt BuildSettingExtractor.
2222
2323** Version History**
You can’t perform that action at this time.
0 commit comments