File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ - (void)tps_registerApplicationDefaults {
3737 TPSLinesBetweenBuildSettingsWithInfo : @3 ,
3838 TPSTargetFoldersEnabled : @(NO ),
3939 TPSProjectFolderEnabled : @(NO ),
40- TPSDestinationFolderName : @" xcconfig " ,
40+ TPSDestinationFolderName : BuildSettingExtractor. defaultDestinationFolderName ,
4141 TPSAutosaveInProjectFolder: @(NO ),
4242 TPSAlignBuildSettingValues: @(NO )
4343 };
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ NS_ASSUME_NONNULL_BEGIN
3030+ (NSString *)defaultSharedConfigName ; // "Shared" is the default.
3131+ (NSString *)defaultProjectConfigName ; // "Project" is the default.
3232+ (NSString *)defaultNameSeparator ; // "-" (hyphen) is the default.
33+ + (NSString *)defaultDestinationFolderName ; // "xcconfig" is the default.
3334
3435
3536// The name that will be used to name common / shared config files.
Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ + (NSString *)defaultNameSeparator {
4343 return @" -" ;
4444}
4545
46+ + (NSString *)defaultDestinationFolderName {
47+ return @" xcconfig" ;
48+ }
49+
4650- (instancetype )init {
4751 self = [super init ];
4852 if (self) {
You can’t perform that action at this time.
0 commit comments