UnityEditor.XCodeEditor.XCProject.AddOtherCFlags C# (CSharp) Method

AddOtherCFlags() public method

public AddOtherCFlags ( UnityEditor.XCodeEditor.PBXList flags ) : bool
flags UnityEditor.XCodeEditor.PBXList
return bool
        public bool AddOtherCFlags( PBXList flags )
        {
            foreach( KeyValuePair<string, XCBuildConfiguration> buildConfig in buildConfigurations ) {
                buildConfig.Value.AddOtherCFlags( flags );
            }
            modified = true;
            return modified;
        }

Same methods

XCProject::AddOtherCFlags ( string flag ) : bool