How do I use my own compiler with Nant? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:37:30Z http://stackoverflow.com/feeds/question/87831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/87831/how-do-i-use-my-own-compiler-with-nant 2 How do I use my own compiler with Nant? Eyesno 2008-09-17T21:25:33Z 2008-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#87844 2 Answer by Cody Brocious for How do I use my own compiler with Nant? Cody Brocious 2008-09-17T21:27:19Z 2008-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#87857 1 Answer by workmad3 for How do I use my own compiler with Nant? workmad3 2008-09-17T21:29:17Z 2008-09-17T21:29:17Z <p>Initially, use the &lt;exec&gt; 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 &lt;taskdef&gt; 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#87878 0 Answer by Romain Verdier for How do I use my own compiler with Nant? Romain Verdier 2008-09-17T21:30:20Z 2008-09-17T21:30:20Z <p>You could also use the <code>&lt;exec&gt;</code> task.</p> http://stackoverflow.com/questions/87831/how-do-i-use-my-own-compiler-with-nant/87948#87948 4 Answer by Jeff Cuscutis for How do I use my own compiler with Nant? Jeff Cuscutis 2008-09-17T21:38:33Z 2008-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>&lt;target name="build.application"&gt; &lt;exec program="dcc32" basedir="${Delphi.Bin}" workingdir="${Application.Folder}" verbose="true"&gt; &lt;arg value="${Application.Compiler.Directive}" /&gt; &lt;arg value="-Q" /&gt; &lt;arg value="/B" /&gt; &lt;arg value="/E${Application.Output.Folder}" /&gt; &lt;arg value="/U${Application.Lib.Folder};${Application.Search.Folder}" /&gt; &lt;arg value="${Application.Folder}\${Delphi.Project}" /&gt; &lt;/exec&gt; &lt;/target&gt; </code></pre>