Re: [Nant-users] C++ Project

2003-10-14 Thread Ian MacLean
Good link. Note that since that was posted, midl and rc tasks have been added into the main nant source. You'll need to grab a recent nightly to pick up the change. http://nant.sourceforge.net/builds/ Ian aranud wrote: Have a look at this amazing blog: http://www.iunknown.com/000105.html John'

RE: [Nant-users] C++ Project

2003-10-14 Thread aranud
Have a look at this amazing blog: http://www.iunknown.com/000105.html John's best advice is to look at the log generated by Visual Studio .NET when it builds C++ project. Hope this helps, Arnaud :O) --- This SF.net email is sponsored by: SF.n

[Nant-users] foreach recursive?

2003-10-14 Thread Lalit Parashar
I want to "recursively" loop through all the folders in C:\ using foreach. How could I do that? Thanks Lalit --- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people

[Nant-users] C++ Project

2003-10-14 Thread Marion Nalepa
Are there any examples of ATL or ATL/WTL C++ projects being built with NAnt? Anybody have a build file they'd be willing to share to give me a starting point? -- Marion Nalepa -- "There are 10 different kinds of people in this world -- those who understand binary and those who don't."

Re: [Nant-users] support for property files ?

2003-10-14 Thread Rodrigo B. de Oliveira
> > > Hmmm... But this is not exactly the same... What happens when the included > > file does not exit? > > just use failonerror="false" for the include task ? > Oh, I see. Thanks, Rodrigo --- This SF.net email is sponsored by: SF.net Giveb

RE: [Nant-users] support for property files ?

2003-10-14 Thread Jean Rajotte
the shared project file conditionally includes the shared property file, which conditionally includes the local property file. ... 8<-- 8<-- > -Original Message- > From: Rodrigo B. de Oliveira [mailto:[EMAIL PROTECTE

Re: [Nant-users] support for property files ?

2003-10-14 Thread Gert Driesen
- Original Message - From: "Rodrigo B. de Oliveira" <[EMAIL PROTECTED]> To: "Gert Driesen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; "Marion Nalepa" <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 9:38 PM Subject: Re: [Nant-users] support for property files ? > Hmmm... But this is n

Re: [Nant-users] support for property files ?

2003-10-14 Thread Rodrigo B. de Oliveira
Hmmm... But this is not exactly the same... What happens when the included file does not exit? Think of the following typical scenario: * multiple developers with slightly different build environments (different location for some libraries, for instance); * the build script contains prope

Re: [Nant-users] Latest nightly build not smart about project dependencies anymore ?

2003-10-14 Thread Gert Driesen
- Original Message - From: "Vincent Erickson" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 8:56 PM Subject: RE: [Nant-users] Latest nightly build not smart about project dependencies anymore ? > Very helpful. Thanks! Thanks also for the he

Re: [Nant-users] support for property files ?

2003-10-14 Thread Gert Driesen
- Original Message - From: "Marion Nalepa" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 8:39 PM Subject: [Nant-users] support for property files ? > I'm wondering if there is an equivalent ability in NAnt to > Ant's property file feature: > > Specifically,

Re: [Nant-users] Latest nightly build not smart about project dependencies anymore ?

2003-10-14 Thread Gert Driesen
- Original Message - From: "Vincent Erickson" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 8:26 PM Subject: RE: [Nant-users] Latest nightly build not smart about project dependencies anymore ? > As long as I have your ear, you might be ab

[Nant-users] support for property files ?

2003-10-14 Thread Marion Nalepa
I'm wondering if there is an equivalent ability in NAnt to Ant's property file feature: Specifically, in Ant you can load properties from an external file such as: where this file contains name/value pairs like: prop1=value1 prop2=value2 ... This is immensely useful t

Re: [Nant-users] Latest nightly build not smart about project dependencies anymore ?

2003-10-14 Thread Gert Driesen
- Original Message - From: "Vincent Erickson" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 8:19 PM Subject: RE: [Nant-users] Latest nightly build not smart about project dependencies anymore ? > Are you suggesting the BuildAll target should

Re: [Nant-users] Latest nightly build not smart about project dependencies anymore ?

2003-10-14 Thread Gert Driesen
Are you using the task to handle the dependencies ? If you are, then there has indeed been a change in behaviour. As from NAnt 0.8.4, the call task will always execute the specified target and its dependencies. This is more powerful and matches the behaviour of Ant. Normal target dependencies

[Nant-users] Latest nightly build not smart about project dependencies anymore ?

2003-10-14 Thread Vincent Erickson
I downloaded and built the 10/13 nightly build. I have 4 vbc project targets. Projects B, C, and D are all dependent on project A. When I was using the last stable release version of NAnt, it was smart enough to only compile project A once when I ran my target which builds all 4 projects. I

[Nant-users] foreach and more

2003-10-14 Thread Nicklas Norling
Hi all. I've been trying to introduce NAnt in my company's build process. Unfortunately I've ran into problems. I've spent over a week trying to sort things out and feel I'm nearly there. First tried using but since it wasn't taking the order of compilations as defined in the *.sln file into acc