~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.MacDev/XcodeIntegration/PBXNativeTarget.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// 
2
 
// PBXNativeTarget.cs
3
 
//  
4
 
// Authors:
5
 
//       Geoff Norton <gnorton@novell.com>
6
 
//       Jeffrey Stedfast <jeff@xamarin.com>
7
 
// 
8
 
// Copyright (c) 2011 Novell, Inc.
9
 
// Copyright (c) 2011 Xamarin Inc.
10
 
// 
11
 
// Permission is hereby granted, free of charge, to any person obtaining a copy
12
 
// of this software and associated documentation files (the "Software"), to deal
13
 
// in the Software without restriction, including without limitation the rights
14
 
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
 
// copies of the Software, and to permit persons to whom the Software is
16
 
// furnished to do so, subject to the following conditions:
17
 
// 
18
 
// The above copyright notice and this permission notice shall be included in
19
 
// all copies or substantial portions of the Software.
20
 
// 
21
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
 
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
 
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
 
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
 
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
 
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
 
// THE SOFTWARE.
28
 
 
29
 
using System;
30
 
using System.Text;
31
 
using System.Collections.Generic;
32
 
 
33
 
namespace MonoDevelop.MacDev.XcodeIntegration
34
 
{
35
 
        class PBXNativeTarget : XcodeObject
36
 
        {
37
 
                XCConfigurationList configuration;
38
 
                List<XcodeObject> buildphases;
39
 
                string name;
40
 
                PBXFileReference target;
41
 
 
42
 
                public PBXNativeTarget (string name, XCConfigurationList configuration, PBXFileReference target)
43
 
                {
44
 
                        this.name = name;
45
 
                        this.configuration = configuration;
46
 
                        this.target = target;
47
 
                        this.buildphases = new List<XcodeObject> ();
48
 
 
49
 
                        configuration.Target = this;
50
 
                }
51
 
 
52
 
                public override string Name {
53
 
                        get { return name; }
54
 
                }
55
 
 
56
 
                public override XcodeType Type {
57
 
                        get {
58
 
                                return XcodeType.PBXNativeTarget;
59
 
                        }
60
 
                }
61
 
 
62
 
                public void AddBuildPhase (XcodeObject phase)
63
 
                {
64
 
                        buildphases.Add (phase);
65
 
                }
66
 
 
67
 
                public override string ToString ()
68
 
                {
69
 
                        var sb = new StringBuilder ();
70
 
 
71
 
                        sb.AppendFormat ("{0} /* {1} */ = {{\n", Token, name);
72
 
                        sb.AppendFormat ("\t\t\tisa = {0};\n", Type);
73
 
                        sb.AppendFormat ("\t\t\tbuildConfigurationList = {0} /* {1} */;\n", configuration.Token, configuration.Name);
74
 
                        sb.AppendFormat ("\t\t\tbuildPhases = (\n");
75
 
                        foreach (XcodeObject xco in buildphases)
76
 
                                sb.AppendFormat ("\t\t\t\t{0} /* {1} */,\n", xco.Token, xco.Name);
77
 
                        sb.AppendFormat ("\t\t\t);\n");
78
 
                        sb.AppendFormat ("\t\t\tbuildRules = (\n");
79
 
                        sb.AppendFormat ("\t\t\t);\n");
80
 
                        sb.AppendFormat ("\t\t\tdependencies = (\n");
81
 
                        sb.AppendFormat ("\t\t\t);\n");
82
 
                        sb.AppendFormat ("\t\t\tname = \"{0}\";\n", name);
83
 
                        sb.AppendFormat ("\t\t\tproductName = \"{0}\";\n", name);
84
 
                        sb.AppendFormat ("\t\t\tproductReference = {0} /* {1} */;\n", target.Token, target.Name);
85
 
                        sb.AppendFormat ("\t\t\tproductType = \"com.apple.product-type.application\";\n");
86
 
                        sb.AppendFormat ("\t\t}};");
87
 
 
88
 
                        return sb.ToString ();
89
 
                }
90
 
        }
91
 
}