]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/Cpptasks/net/sf/antcontrib/cpptasks/devstudio/DevStudioProcessor.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / Cpptasks / net / sf / antcontrib / cpptasks / devstudio / DevStudioProcessor.java
1 /*
2 *
3 * Copyright 2002-2004 The Ant-Contrib project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 package net.sf.antcontrib.cpptasks.devstudio;
18 import java.util.Vector;
19 /**
20 * A add-in class for Microsoft Developer Studio processors
21 *
22 *
23 */
24 public class DevStudioProcessor {
25 public static void addWarningSwitch(Vector args, int level) {
26 switch (level) {
27 case 0 :
28 args.addElement("/W0");
29 break;
30 case 1 :
31 args.addElement("/W1");
32 break;
33 case 2 :
34 break;
35 case 3 :
36 args.addElement("/W3");
37 break;
38 case 4 :
39 args.addElement("/W4");
40 break;
41 case 5 :
42 args.addElement("/WX");
43 break;
44 }
45 }
46 public static String getCommandFileSwitch(String cmdFile) {
47 StringBuffer buf = new StringBuffer("@");
48 if (cmdFile.indexOf(' ') >= 0) {
49 buf.append('\"');
50 buf.append(cmdFile.replace('/', '\\'));
51 buf.append('\"');
52 } else {
53 buf.append(cmdFile);
54 }
55 return buf.toString();
56 }
57 public static void getDefineSwitch(StringBuffer buffer, String define,
58 String value) {
59 buffer.append("/D");
60 buffer.append(define);
61 if (value != null && value.length() > 0) {
62 buffer.append('=');
63 buffer.append(value);
64 }
65 }
66 public static String getIncludeDirSwitch(String includeDir) {
67 return "/I" + includeDir.replace('/', '\\');
68 }
69 public static String[] getOutputFileSwitch(String outPath) {
70 StringBuffer buf = new StringBuffer("/Fo");
71 if (outPath.indexOf(' ') >= 0) {
72 buf.append('\"');
73 buf.append(outPath);
74 buf.append('\"');
75 } else {
76 buf.append(outPath);
77 }
78 String[] retval = new String[]{buf.toString()};
79 return retval;
80 }
81 public static void getUndefineSwitch(StringBuffer buffer, String define) {
82 buffer.append("/U");
83 buffer.append(define);
84 }
85 public static boolean isCaseSensitive() {
86 return false;
87 }
88 private DevStudioProcessor() {
89 }
90 }