Compare commits
No commits in common. "master" and "MB_19340_fix_dialog_crush" have entirely different histories.
master
...
MB_19340_f
|
|
@ -36,9 +36,7 @@ class XCConfig(XCConfigTuple):
|
|||
XCConfigOption.code_sign_identity,
|
||||
XCConfigOption.gcc_optimization_level,
|
||||
XCConfigOption.swift_optimization_level,
|
||||
XCConfigOption.swift_compilation_mode,
|
||||
XCConfigOption.assetcatalog_compiler_optimization,
|
||||
XCConfigOption.other_swift_flags
|
||||
XCConfigOption.swift_compilation_mode
|
||||
])
|
||||
)
|
||||
|
||||
|
|
@ -115,14 +113,6 @@ class XCConfigOption(XCConfigOptionTuple):
|
|||
def swift_compilation_mode(selectors_dict):
|
||||
return XCConfigOption.__from_key_and_value_based_on_value_in_selectors("SWIFT_COMPILATION_MODE", "singlefile", "wholemodule", selectors_dict)
|
||||
|
||||
@staticmethod
|
||||
def assetcatalog_compiler_optimization(selectors_dict):
|
||||
return XCConfigOption.__from_key_and_value_based_on_value_in_selectors("ASSETCATALOG_COMPILER_OPTIMIZATION", "time", "space", selectors_dict)
|
||||
|
||||
@staticmethod
|
||||
def other_swift_flags(selectors_dict):
|
||||
return XCConfigOption.__from_key_and_value_based_on_value_in_selectors("OTHER_SWIFT_FLAGS", "$(inherited) -Xfrontend -warn-long-expression-type-checking=500 -Xfrontend -warn-long-function-bodies=500 -Xfrontend -enable-actor-data-race-checks", "$(inherited)", selectors_dict)
|
||||
|
||||
@staticmethod
|
||||
def __from_key_and_value_based_on_value_in_selectors(key, value_if_contains, otherwise_value,
|
||||
selectors_dict, expected_value="Debug"):
|
||||
|
|
|
|||
Loading…
Reference in New Issue