UnityEditor.XCodeEditor.XCProject.AddOtherCFlags C# (CSharp) Méthode

AddOtherCFlags() public méthode

public AddOtherCFlags ( UnityEditor.XCodeEditor.PBXList flags ) : bool
flags UnityEditor.XCodeEditor.PBXList
Résultat 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