How do I use my own compiler with Nant? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T23:37:30Zhttp://stackoverflow.com/feeds/question/87831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/87831/how-do-i-use-my-own-compiler-with-nant2How do I use my own compiler with Nant?Eyesno2008-09-17T21:25:33Z2008-09-17T21:38:33Z
<p>Nant seems very compiler-centric - which is guess is because it's considered a .NET development system. But I know it can be done! I've seen it. The platform we're building on has its own compiler and doesn't use 'cl.exe' for c++. We're building a C++ app on a different platform and would like to override with our own compiler. Can anyone point me at a way to do that or at least how to set up a target of my own that will use our target platform's compiler?</p>
http://stackoverflow.com/questions/87831/how-do-i-use-my-own-compiler-with-nant/87844#878442Answer by Cody Brocious for How do I use my own compiler with Nant?Cody Brocious2008-09-17T21:27:19Z2008-09-17T21:27:19Z<p>You need to write your own task. <a href="http://www.atalasoft.com/cs/blogs/jake/archive/2008/05/07/writing-custom-nant-tasks.aspx" rel="nofollow">This</a> is a nice reference.</p>
http://stackoverflow.com/questions/87831/how-do-i-use-my-own-compiler-with-nant/87857#878571Answer by workmad3 for How do I use my own compiler with Nant?workmad32008-09-17T21:29:17Z2008-09-17T21:29:17Z<p>Initially, use the <exec> task to run an executable, passing in any required information as parameters and/or environment variables.</p>
<p>For future use, you could also investigate writing your own task. I know with standard ant this is done with the <taskdef> task and a java class. I'm not sure of the Nant equivalent unfortunately.</p>
http://stackoverflow.com/questions/87831/how-do-i-use-my-own-compiler-with-nant/87878#878780Answer by Romain Verdier for How do I use my own compiler with Nant?Romain Verdier2008-09-17T21:30:20Z2008-09-17T21:30:20Z<p>You could also use the <code><exec></code> task.</p>
http://stackoverflow.com/questions/87831/how-do-i-use-my-own-compiler-with-nant/87948#879484Answer by Jeff Cuscutis for How do I use my own compiler with Nant?Jeff Cuscutis2008-09-17T21:38:33Z2008-09-17T21:38:33Z<p>Here is one I did for Delphi. Each 'arg' is a separate param with a value defined elsewhere. The target is called with the params set up before calling it.</p>
<pre><code><target name="build.application">
<exec program="dcc32" basedir="${Delphi.Bin}" workingdir="${Application.Folder}" verbose="true">
<arg value="${Application.Compiler.Directive}" />
<arg value="-Q" />
<arg value="/B" />
<arg value="/E${Application.Output.Folder}" />
<arg value="/U${Application.Lib.Folder};${Application.Search.Folder}" />
<arg value="${Application.Folder}\${Delphi.Project}" />
</exec>
</target>
</code></pre>