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

« back to all changes in this revision

Viewing changes to src/addins/CBinding/CBinding.Autotools/CAutotoolsSetup.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
// CAutotoolsSetup.cs
 
3
//
 
4
// Authors:
 
5
//   Marcos David Marin Amador <MarcosMarin@gmail.com>
 
6
//
 
7
// Copyright (C) 2007 Marcos David Marin Amador
 
8
//
 
9
//
 
10
// This source code is licenced under The MIT License:
 
11
//
 
12
// Permission is hereby granted, free of charge, to any person obtaining
 
13
// a copy of this software and associated documentation files (the
 
14
// "Software"), to deal in the Software without restriction, including
 
15
// without limitation the rights to use, copy, modify, merge, publish,
 
16
// distribute, sublicense, and/or sell copies of the Software, and to
 
17
// permit persons to whom the Software is furnished to do so, subject to
 
18
// the following conditions:
 
19
// 
 
20
// The above copyright notice and this permission notice shall be
 
21
// included in all copies or substantial portions of the Software.
 
22
// 
 
23
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
24
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
25
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
26
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
27
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
28
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
29
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
30
//
 
31
 
 
32
using System;
 
33
 
 
34
using MonoDevelop.Projects;
 
35
using MonoDevelop.Autotools;
 
36
 
 
37
using CBinding;
 
38
 
 
39
namespace CBinding.Autotools
 
40
{
 
41
        public class CAutotoolsSetup : ISimpleAutotoolsSetup
 
42
        {
 
43
                public string GetCompilerCommand (Project project, string configuration)
 
44
                {
 
45
                        if (!CanDeploy (project))
 
46
                                throw new Exception ("Not a deployable project.");
 
47
                        
 
48
                        CProject cproj = project as CProject;
 
49
                        
 
50
                        return cproj.Compiler.CompilerCommand;
 
51
                }
 
52
 
 
53
                // FIXME: Currently only the compiler flags are sent, no linker flags are sent.
 
54
                public string GetCompilerFlags (Project project, string configuration)
 
55
                {
 
56
                        if (!CanDeploy (project))
 
57
                                throw new Exception ("Not a deployable project.");
 
58
                        
 
59
                        CProjectConfiguration config = project.Configurations[configuration] as CProjectConfiguration;
 
60
                        
 
61
                        if (config == null)
 
62
                                return string.Empty;
 
63
                        
 
64
                        CProject cproj = project as CProject;
 
65
                        
 
66
                        return cproj.Compiler.GetCompilerFlags (cproj, config);
 
67
                }
 
68
 
 
69
                public bool CanDeploy (Project project)
 
70
                {
 
71
                        return project is CProject;
 
72
                }
 
73
        }
 
74
}
 
 
b'\\ No newline at end of file'