source: release-kits/lirk3/bin/ant-installer/web/manual/manual/OptionalTasks/csc.html@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 23.0 KB
Line 
1<!--
2 Licensed to the Apache Software Foundation (ASF) under one or more
3 contributor license agreements. See the NOTICE file distributed with
4 this work for additional information regarding copyright ownership.
5 The ASF licenses this file to You under the Apache License, Version 2.0
6 (the "License"); you may not use this file except in compliance with
7 the License. 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
18<html>
19<head>
20 <meta http-equiv="Content-Language" content="en-us">
21 <title>Csc
22 Task</title>
23</head>
24
25<body bgcolor="#ffffff" text="#000000" link="#525D76"
26 alink="#525D76" vlink="#525D76">
27
28<table border="0" width="100%" cellspacing="4">
29
30 <!-- PAGE HEADER -->
31 <tr>
32 <td>
33 <table border="0" width="100%"><tr>
34 <td valign="bottom">
35 <font size="+3" face="arial,helvetica,sanserif"><strong>Csc
36 Task</strong></font>
37 <br><font face="arial,helvetica,sanserif">Compiles C# source into executables or modules.</font>
38 </td>
39 <td>
40 <!-- PROJECT LOGO -->
41 <a href="http://ant.apache.org/">
42 <img src="../../images/ant_logo_large.gif" align="right" alt="Apache Ant" border="0">
43 </a>
44 </td>
45 </tr></table>
46 </td>
47 </tr>
48
49 <!-- START RIGHT SIDE MAIN BODY -->
50 <tr>
51 <td valign="top" align="left">
52
53 <!-- Applying task/long-description -->
54 <!-- Start Description -->
55 <table border="0" cellspacing="0" cellpadding="2" width="100%">
56 <tr><td>&nbsp;</td></tr>
57
58 <tr><td bgcolor="#525D76">
59 <font color="#ffffff" face="arial,helvetica.sanserif">
60 <a name="description">
61 <strong>Description</strong></a></font>
62 </td></tr>
63
64 <tr><td><blockquote>
65 Compiles C# source into executables or modules. csc.exe on Windows or mcs on any other platform must be on the execute path, unless another executable or the full path to that executable is specified in the <tt>executable</tt> parameter <p> All parameters are optional: <code>&lt;csc/&gt;</code> should suffice to produce a debug build of all *.cs files. However, naming an <tt>destFile</tt>stops the csc compiler from choosing an output name from random, and allows the dependency checker to determine if the file is out of date. <p> The task is a directory based task, so attributes like <b>includes="*.cs" </b> and <b>excludes="broken.cs"</b> can be used to control the files pulled in. By default, all *.cs files from the project folder down are included in the command. When this happens the output file -if not specified- is taken as the first file in the list, which may be somewhat hard to control. Specifying the output file with <tt>destFile</tt> seems prudent. <p> <p> For more complex source trees, nested <tt>src</tt> elements can be supplied. When such an element is present, the implicit fileset is ignored. This makes sense, when you think about it :) <p>For historical reasons the pattern <code>**/*.cs</code> is preset as includes list and you can not override it with an explicit includes attribute. Use nested <code>&lt;src&gt;</code> elements instead of the basedir attribute if you need more control.</p> <p> References to external files can be made through the references attribute, or (since Ant1.6), via nested <code>&lt;reference&gt;</code> filesets. With the latter, the timestamps of the references are also used in the dependency checking algorithm. <p> Example <pre>&lt;csc optimize=&quot;true&quot; debug=&quot;false&quot; docFile=&quot;documentation.xml&quot; warnLevel=&quot;4&quot; unsafe=&quot;false&quot; targetType=&quot;exe&quot; incremental=&quot;false&quot; mainClass = &quot;MainApp&quot; destFile=&quot;NetApp.exe&quot; &gt; &lt;src dir="src" includes="*.cs"/&gt; &lt;reference file="${testCSC.dll}"/&gt; &lt;define name="RELEASE"/&gt; &lt;define name="DEBUG" if="debug.property"/&gt; &lt;define name="def3" unless="def3.property"/&gt; &lt;/csc&gt; </pre>
66 </blockquote></td></tr>
67
68 </table>
69 <!-- End Description -->
70
71 <!-- Start Attributes -->
72 <table border="0" cellspacing="0" cellpadding="2" width="100%">
73 <tr><td>&nbsp;</td></tr>
74 <tr><td bgcolor="#525D76">
75 <font color="#ffffff" face="arial,helvetica.sanserif">
76 <a name="attributes">
77 <strong>Parameters</strong></a></font>
78 </td></tr>
79 <tr><td><blockquote>
80 <table>
81 <tr>
82 <td bgcolor="#cccccc" valign="top" align="left">
83 <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Attribute</b></font>
84 </td>
85 <td bgcolor="#cccccc" valign="top" align="left">
86 <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Description</b></font>
87 </td>
88 <td bgcolor="#cccccc" valign="top" align="left">
89 <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Type</b></font>
90 </td>
91 <td bgcolor="#cccccc" valign="top" align="left">
92 <font color="#000000" size="-1" face="arial,helvetica,sanserif"><b>Requirement</b></font>
93 </td>
94 </tr>
95 <!-- Attribute Group -->
96
97 <!-- Attribute Group -->
98 <!-- Attribute -->
99 <tr>
100 <td bgcolor="#eeeeee" valign="top" align="left">
101 <font color="#000000" size="-1" face="arial,helvetica,sanserif">additionalmodules</font>
102 </td>
103 <td bgcolor="#eeeeee" valign="top" align="left">
104 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Semicolon separated list of modules to refer to.</font>
105 </td>
106 <td bgcolor="#eeeeee" valign="top" align="left">
107 <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
108 </td>
109 <td bgcolor="#eeeeee" valign="top" align="left" rowspan="26">
110 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Optional</font>
111 </td>
112 </tr>
113 <!-- Attribute -->
114 <tr>
115 <td bgcolor="#eeeeee" valign="top" align="left">
116 <font color="#000000" size="-1" face="arial,helvetica,sanserif">debug</font>
117 </td>
118 <td bgcolor="#eeeeee" valign="top" align="left">
119 <font color="#000000" size="-1" face="arial,helvetica,sanserif">set the debug flag on or off.</font>
120 </td>
121 <td bgcolor="#eeeeee" valign="top" align="left">
122 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
123 </td>
124 </tr>
125 <!-- Attribute -->
126 <tr>
127 <td bgcolor="#eeeeee" valign="top" align="left">
128 <font color="#000000" size="-1" face="arial,helvetica,sanserif">definitions</font>
129 </td>
130 <td bgcolor="#eeeeee" valign="top" align="left">
131 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Semicolon separated list of defined constants.</font>
132 </td>
133 <td bgcolor="#eeeeee" valign="top" align="left">
134 <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
135 </td>
136 </tr>
137 <!-- Attribute -->
138 <tr>
139 <td bgcolor="#eeeeee" valign="top" align="left">
140 <font color="#000000" size="-1" face="arial,helvetica,sanserif">destdir</font>
141 </td>
142 <td bgcolor="#eeeeee" valign="top" align="left">
143 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Set the destination directory of files to be compiled.</font>
144 </td>
145 <td bgcolor="#eeeeee" valign="top" align="left">
146 <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
147 </td>
148 </tr>
149 <!-- Attribute -->
150 <tr>
151 <td bgcolor="#eeeeee" valign="top" align="left">
152 <font color="#000000" size="-1" face="arial,helvetica,sanserif">destfile</font>
153 </td>
154 <td bgcolor="#eeeeee" valign="top" align="left">
155 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Set the name of exe/library to create.</font>
156 </td>
157 <td bgcolor="#eeeeee" valign="top" align="left">
158 <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
159 </td>
160 </tr>
161 <!-- Attribute -->
162 <tr>
163 <td bgcolor="#eeeeee" valign="top" align="left">
164 <font color="#000000" size="-1" face="arial,helvetica,sanserif">docfile</font>
165 </td>
166 <td bgcolor="#eeeeee" valign="top" align="left">
167 <font color="#000000" size="-1" face="arial,helvetica,sanserif">file for generated XML documentation</font>
168 </td>
169 <td bgcolor="#eeeeee" valign="top" align="left">
170 <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
171 </td>
172 </tr>
173 <!-- Attribute -->
174 <tr>
175 <td bgcolor="#eeeeee" valign="top" align="left">
176 <font color="#000000" size="-1" face="arial,helvetica,sanserif">executable</font>
177 </td>
178 <td bgcolor="#eeeeee" valign="top" align="left">
179 <font color="#000000" size="-1" face="arial,helvetica,sanserif">set the name of the program, overriding the defaults. Can be used to set the full path to a program, or to switch to an alternate implementation of the command, such as the Mono or Rotor versions -provided they use the same command line arguments as the .NET framework edition</font>
180 </td>
181 <td bgcolor="#eeeeee" valign="top" align="left">
182 <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
183 </td>
184 </tr>
185 <!-- Attribute -->
186 <tr>
187 <td bgcolor="#eeeeee" valign="top" align="left">
188 <font color="#000000" size="-1" face="arial,helvetica,sanserif">extraoptions</font>
189 </td>
190 <td bgcolor="#eeeeee" valign="top" align="left">
191 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Any extra options which are not explicitly supported by this task.</font>
192 </td>
193 <td bgcolor="#eeeeee" valign="top" align="left">
194 <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
195 </td>
196 </tr>
197 <!-- Attribute -->
198 <tr>
199 <td bgcolor="#eeeeee" valign="top" align="left">
200 <font color="#000000" size="-1" face="arial,helvetica,sanserif">failonerror</font>
201 </td>
202 <td bgcolor="#eeeeee" valign="top" align="left">
203 <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, fail on compilation errors.</font>
204 </td>
205 <td bgcolor="#eeeeee" valign="top" align="left">
206 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
207 </td>
208 </tr>
209 <!-- Attribute -->
210 <tr>
211 <td bgcolor="#eeeeee" valign="top" align="left">
212 <font color="#000000" size="-1" face="arial,helvetica,sanserif">filealign</font>
213 </td>
214 <td bgcolor="#eeeeee" valign="top" align="left">
215 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Set the file alignment. Valid values are 0,512, 1024, 2048, 4096, 8192, and 16384, 0 means 'leave to the compiler'</font>
216 </td>
217 <td bgcolor="#eeeeee" valign="top" align="left">
218 <font color="#000000" size="-1" face="arial,helvetica,sanserif">int</font>
219 </td>
220 </tr>
221 <!-- Attribute -->
222 <tr>
223 <td bgcolor="#eeeeee" valign="top" align="left">
224 <font color="#000000" size="-1" face="arial,helvetica,sanserif">fullpaths</font>
225 </td>
226 <td bgcolor="#eeeeee" valign="top" align="left">
227 <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, print the full path of files on errors.</font>
228 </td>
229 <td bgcolor="#eeeeee" valign="top" align="left">
230 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
231 </td>
232 </tr>
233 <!-- Attribute -->
234 <tr>
235 <td bgcolor="#eeeeee" valign="top" align="left">
236 <font color="#000000" size="-1" face="arial,helvetica,sanserif">includedefaultreferences</font>
237 </td>
238 <td bgcolor="#eeeeee" valign="top" align="left">
239 <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, automatically includes the common assemblies in dotnet, and tells the compiler to link in mscore.dll. set the automatic reference inclusion flag on or off this flag controls the /nostdlib option in CSC</font>
240 </td>
241 <td bgcolor="#eeeeee" valign="top" align="left">
242 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
243 </td>
244 </tr>
245 <!-- Attribute -->
246 <tr>
247 <td bgcolor="#eeeeee" valign="top" align="left">
248 <font color="#000000" size="-1" face="arial,helvetica,sanserif">incremental</font>
249 </td>
250 <td bgcolor="#eeeeee" valign="top" align="left">
251 <font color="#000000" size="-1" face="arial,helvetica,sanserif">set the incremental compilation flag on or off.</font>
252 </td>
253 <td bgcolor="#eeeeee" valign="top" align="left">
254 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
255 </td>
256 </tr>
257 <!-- Attribute -->
258 <tr>
259 <td bgcolor="#eeeeee" valign="top" align="left">
260 <font color="#000000" size="-1" face="arial,helvetica,sanserif">mainclass</font>
261 </td>
262 <td bgcolor="#eeeeee" valign="top" align="left">
263 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sets the name of main class for executables.</font>
264 </td>
265 <td bgcolor="#eeeeee" valign="top" align="left">
266 <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
267 </td>
268 </tr>
269 <!-- Attribute -->
270 <tr>
271 <td bgcolor="#eeeeee" valign="top" align="left">
272 <font color="#000000" size="-1" face="arial,helvetica,sanserif">noconfig</font>
273 </td>
274 <td bgcolor="#eeeeee" valign="top" align="left">
275 <font color="#000000" size="-1" face="arial,helvetica,sanserif">A flag that tells the compiler not to read in the compiler settings files 'csc.rsp' in its bin directory and then the local directory</font>
276 </td>
277 <td bgcolor="#eeeeee" valign="top" align="left">
278 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
279 </td>
280 </tr>
281 <!-- Attribute -->
282 <tr>
283 <td bgcolor="#eeeeee" valign="top" align="left">
284 <font color="#000000" size="-1" face="arial,helvetica,sanserif">optimize</font>
285 </td>
286 <td bgcolor="#eeeeee" valign="top" align="left">
287 <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, enables optimization flag.</font>
288 </td>
289 <td bgcolor="#eeeeee" valign="top" align="left">
290 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
291 </td>
292 </tr>
293 <!-- Attribute -->
294 <tr>
295 <td bgcolor="#eeeeee" valign="top" align="left">
296 <font color="#000000" size="-1" face="arial,helvetica,sanserif">outputfile</font>
297 </td>
298 <td bgcolor="#eeeeee" valign="top" align="left">
299 <font color="#000000" size="-1" face="arial,helvetica,sanserif">The output file. This is identical to the destFile attribute.</font>
300 </td>
301 <td bgcolor="#eeeeee" valign="top" align="left">
302 <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
303 </td>
304 </tr>
305 <!-- Attribute -->
306 <tr>
307 <td bgcolor="#eeeeee" valign="top" align="left">
308 <font color="#000000" size="-1" face="arial,helvetica,sanserif">referencefiles</font>
309 </td>
310 <td bgcolor="#eeeeee" valign="top" align="left">
311 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Path of references to include. Wildcards should work.</font>
312 </td>
313 <td bgcolor="#eeeeee" valign="top" align="left">
314 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Path</font>
315 </td>
316 </tr>
317 <!-- Attribute -->
318 <tr>
319 <td bgcolor="#eeeeee" valign="top" align="left">
320 <font color="#000000" size="-1" face="arial,helvetica,sanserif">references</font>
321 </td>
322 <td bgcolor="#eeeeee" valign="top" align="left">
323 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Semicolon separated list of DLLs to refer to.</font>
324 </td>
325 <td bgcolor="#eeeeee" valign="top" align="left">
326 <font color="#000000" size="-1" face="arial,helvetica,sanserif">String</font>
327 </td>
328 </tr>
329 <!-- Attribute -->
330 <tr>
331 <td bgcolor="#eeeeee" valign="top" align="left">
332 <font color="#000000" size="-1" face="arial,helvetica,sanserif">srcdir</font>
333 </td>
334 <td bgcolor="#eeeeee" valign="top" align="left">
335 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Set the source directory of the files to be compiled.</font>
336 </td>
337 <td bgcolor="#eeeeee" valign="top" align="left">
338 <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
339 </td>
340 </tr>
341 <!-- Attribute -->
342 <tr>
343 <td bgcolor="#eeeeee" valign="top" align="left">
344 <font color="#000000" size="-1" face="arial,helvetica,sanserif">targettype</font>
345 </td>
346 <td bgcolor="#eeeeee" valign="top" align="left">
347 <font color="#000000" size="-1" face="arial,helvetica,sanserif">set the target type to one of exe|library|module|winexe</font>
348 </td>
349 <td bgcolor="#eeeeee" valign="top" align="left">
350 <font color="#000000" size="-1" face="arial,helvetica,sanserif">"exe", "library", "module", "winexe"</font>
351 </td>
352 </tr>
353 <!-- Attribute -->
354 <tr>
355 <td bgcolor="#eeeeee" valign="top" align="left">
356 <font color="#000000" size="-1" face="arial,helvetica,sanserif">unsafe</font>
357 </td>
358 <td bgcolor="#eeeeee" valign="top" align="left">
359 <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, enables the unsafe keyword.</font>
360 </td>
361 <td bgcolor="#eeeeee" valign="top" align="left">
362 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
363 </td>
364 </tr>
365 <!-- Attribute -->
366 <tr>
367 <td bgcolor="#eeeeee" valign="top" align="left">
368 <font color="#000000" size="-1" face="arial,helvetica,sanserif">utf8output</font>
369 </td>
370 <td bgcolor="#eeeeee" valign="top" align="left">
371 <font color="#000000" size="-1" face="arial,helvetica,sanserif">If true, require all compiler output to be in UTF8 format.</font>
372 </td>
373 <td bgcolor="#eeeeee" valign="top" align="left">
374 <font color="#000000" size="-1" face="arial,helvetica,sanserif">boolean</font>
375 </td>
376 </tr>
377 <!-- Attribute -->
378 <tr>
379 <td bgcolor="#eeeeee" valign="top" align="left">
380 <font color="#000000" size="-1" face="arial,helvetica,sanserif">warnlevel</font>
381 </td>
382 <td bgcolor="#eeeeee" valign="top" align="left">
383 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Level of warning currently between 1 and 4 with 4 being the strictest.</font>
384 </td>
385 <td bgcolor="#eeeeee" valign="top" align="left">
386 <font color="#000000" size="-1" face="arial,helvetica,sanserif">int</font>
387 </td>
388 </tr>
389 <!-- Attribute -->
390 <tr>
391 <td bgcolor="#eeeeee" valign="top" align="left">
392 <font color="#000000" size="-1" face="arial,helvetica,sanserif">win32icon</font>
393 </td>
394 <td bgcolor="#eeeeee" valign="top" align="left">
395 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Set the filename of icon to include.</font>
396 </td>
397 <td bgcolor="#eeeeee" valign="top" align="left">
398 <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
399 </td>
400 </tr>
401 <!-- Attribute -->
402 <tr>
403 <td bgcolor="#eeeeee" valign="top" align="left">
404 <font color="#000000" size="-1" face="arial,helvetica,sanserif">win32res</font>
405 </td>
406 <td bgcolor="#eeeeee" valign="top" align="left">
407 <font color="#000000" size="-1" face="arial,helvetica,sanserif">Sets the filename of a win32 resource (.RES) file to include. This is not a .NET resource, but what Windows is used to.</font>
408 </td>
409 <td bgcolor="#eeeeee" valign="top" align="left">
410 <font color="#000000" size="-1" face="arial,helvetica,sanserif">File</font>
411 </td>
412 </tr>
413
414
415 </table>
416 </blockquote></td></tr>
417
418 </table>
419 <!-- End Attributes -->
420
421 <!-- Start Elements -->
422 <table border="0" cellspacing="0" cellpadding="2" width="100%">
423 <tr><td>&nbsp;</td></tr>
424
425 <tr><td bgcolor="#525D76">
426 <font color="#ffffff" face="arial,helvetica.sanserif">
427 <a name="elements">
428 <strong>Parameters as nested elements</strong></a></font>
429 </td></tr>
430
431 <tr><td><blockquote>
432 <!-- Start Element -->
433 <table border="0" cellspacing="0" cellpadding="2" width="100%">
434 <tr><td>&nbsp;</td></tr>
435 <tr><td bgcolor="#828DA6">
436 <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
437 <strong>define</strong> (org.apache.tools.ant.taskdefs.optional.dotnet.DotnetDefine)</font>
438 </td></tr>
439 <tr><td><blockquote>
440 add a define to the list of definitions
441 </blockquote></td></tr>
442 </table>
443 <!-- End Element -->
444 <!-- Start Element -->
445 <table border="0" cellspacing="0" cellpadding="2" width="100%">
446 <tr><td>&nbsp;</td></tr>
447 <tr><td bgcolor="#828DA6">
448 <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
449 <strong>reference</strong> (org.apache.tools.ant.types.FileSet)</font>
450 </td></tr>
451 <tr><td><blockquote>
452 add a new reference fileset to the compilation
453 </blockquote></td></tr>
454 </table>
455 <!-- End Element -->
456 <!-- Start Element -->
457 <table border="0" cellspacing="0" cellpadding="2" width="100%">
458 <tr><td>&nbsp;</td></tr>
459 <tr><td bgcolor="#828DA6">
460 <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
461 <strong>resource</strong> (org.apache.tools.ant.taskdefs.optional.dotnet.DotnetResource)</font>
462 </td></tr>
463 <tr><td><blockquote>
464 link or embed a resource
465 </blockquote></td></tr>
466 </table>
467 <!-- End Element -->
468 <!-- Start Element -->
469 <table border="0" cellspacing="0" cellpadding="2" width="100%">
470 <tr><td>&nbsp;</td></tr>
471 <tr><td bgcolor="#828DA6">
472 <font color="#ffffff" face="arial,helvetica.sanserif" size="-1">
473 <strong>src</strong> (org.apache.tools.ant.types.FileSet)</font>
474 </td></tr>
475 <tr><td><blockquote>
476 add a new source directory to the compile
477 </blockquote></td></tr>
478 </table>
479 <!-- End Element -->
480
481 </blockquote></td></tr>
482
483 </table>
484 <!-- End Elements -->
485
486
487 </td>
488 </tr>
489 <!-- END RIGHT SIDE MAIN BODY -->
490
491</table>
492
493</body>
494</html>
Note: See TracBrowser for help on using the repository browser.