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

AddOtherLDFlags() public method

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

Same methods

XCProject::AddOtherLDFlags ( string flag ) : bool