how to remove backslash from SWIFT_OTHER_FLAGS

My options:
Code Block language
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS -Xcc -Wno-error=non-modular-include-in-framework-module";


And I get this in compiler execution and error.
Code Block language
-Xcc\ -Wno-error\=non-modular-include-in-framework-module
<unknown>:0: error: unknown argument: '-Xcc -Wno-error=non-modular-include-in-framework-module'
Command CompileSwiftSources failed with a nonzero exit code


What I need write to Other Swift Flags to pass normally args???

Have you tried using single-quotes?
Code Block
OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS -Xcc '-Wno-error=non-modular-include-in-framework-module'";


how to remove backslash from SWIFT_OTHER_FLAGS
 
 
Q