RE: Ant help for c compiler

2006-06-28 Thread Sayed, Irfan \(Irfan\)
Hi, I have added CC task in build .xml but it's not working I request you to please look into the file attached and let me know what I am doing wrong Regards Irfan. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 28, 2006 6:02 PM To: user@

Re: Fileset patterns...

2006-06-28 Thread Maurice Feskanich
If I'm reading your email right, I think you want to use a 'flatten' type mapper. Maury Juan Jimenez wrote On 06/28/06 09:27 AM,: > Hi, > > Could someone please suggest a better way of achieving the following: > > Copying coverage data to ${temp.folder}/coverage > >

Fileset patterns...

2006-06-28 Thread Juan Jimenez
Hi, Could someone please suggest a better way of achieving the following: Copying coverage data to ${temp.folder}/coverage Basically I would like something as short as:

RE: pvcs - ant usage..

2006-06-28 Thread Anderson, Rob (Global Trade)
The task was intended for use with PVCS Version Manager, not PVCS Dimensions. The two products are vastly different. -Rob A > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 27, 2006 8:56 PM > To: user@ant.apache.org; [EMAIL PROTECTED] > S

RE: build.properties

2006-06-28 Thread prashanth . l
source directory is not found.. check wht is below build failed.. think so the property values are from external file is working.. "Raghuveer" <[EMAIL PROTECTED]> 06/28/2006 06:22 PM Please respond to "Ant Users List" To: "'Ant Users List'" cc: <[EMAIL PROTECTED]>,

RE: build.properties

2006-06-28 Thread Ben Stringer
On Wed, 2006-06-28 at 18:22 +0530, Raghuveer wrote: > jan Thanks a lot for info. > > imagine if buil.xml and buil.properties are in path > F:\tsource\ant > > My Web application is in path. > F:/oc4j_extended/j2ee/home/applications > > > After making changes in xml file as below > project.test=T

RE: build.properties

2006-06-28 Thread Raghuveer
jan Thanks a lot for info. imagine if buil.xml and buil.properties are in path F:\tsource\ant My Web application is in path. F:/oc4j_extended/j2ee/home/applications After making changes in xml file as below project.test=Test Web Application basedir=F:/oc4j_extended/j2ee/home/applications/test/

Re: Ant help for c compiler

2006-06-28 Thread Martin Gainty
Wow what a task! Keep in mind your ANT environment's interactions are thru the JVM/JDK (which are configured by jvm.args and jvm.opts) This is platform-agnostic separate environment from interactions with native binaries which is the situation you have now I would look at manipulations of the

RE: Ant help for c compiler

2006-06-28 Thread pritesh.saharey
Download the " ant-contrib.jar" file from the URL provided by Jan, put this jar file to the lib folder of ANT and first try to run a simple cpp program like this: After this you can go for more compl

AW: build.properties

2006-06-28 Thread Jan.Materne
>What do u mean by >>>Inside the buildfile you have >>> >>>and with property files you load these mappings >>> >>>NAME=VALUE # COMMENT > >Jan Can u elobrate ? http://ant.apache.org/manual/CoreTasks/property.html Jan - T

AW: build.properties

2006-06-28 Thread Jan.Materne
Ant cant find the property file because you set the basedir="../" Jan >-Ursprüngliche Nachricht- >Von: Raghuveer [mailto:[EMAIL PROTECTED] >Gesendet: Mittwoch, 28. Juni 2006 13:40 >An: 'Ant Users List' >Betreff: RE: build.properties > >I made follwoing changes > >In build.properties >-

RE: build.properties

2006-06-28 Thread Raghuveer
What do u mean by >>Inside the buildfile you have >> >>and with property files you load these mappings >> >>NAME=VALUE # COMMENT Jan Can u elobrate ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 28, 2006 1:06 PM To: user@ant.apache.org

RE: build.properties

2006-06-28 Thread Raghuveer
I made follwoing changes In build.properties - project.title=Test Web Application project.version = 1.3 distpath.project = F:/oc4j_extended/j2ee/home/applications In build.xml - ${project.title} ${project.version} ${distpath.project} -

Ant help for c compiler

2006-06-28 Thread Sayed, Irfan \(Irfan\)
Hi All,   I have been assign a task of migrating our build environment from make file base system to ant base system. Our code base has code of java, C and cpp. With Make file we are able to compile and generate the code. To migrate I have downloaded sample makefile (see the attached build_

RE: Ant help for c compiler

2006-06-28 Thread Sayed, Irfan \(Irfan\)
Can you please give me actual syntax to use this CC task in build.xml so that I can compile cpp files Regards irfan. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 28, 2006 4:34 PM To: user@ant.apache.org Subject: AW: Ant help for c compiler

Re: Question on finding what executable ant uses to javac/jar

2006-06-28 Thread Steve Loughran
Ben Stringer wrote: On Tue, 2006-06-27 at 21:56 -0700, Michael Wenk wrote: Hi, I am a fairly new to ant, and unfortunately, I have not been able to find my answer by googling and searching the list archives, tho I have to figure its been asked before. I need help in calling an external progr

Re: Logging output from the Java task?

2006-06-28 Thread Steve Loughran
Vincent Massol wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: mardi 27 juin 2006 18:27 To: user@ant.apache.org Subject: AW: Logging output from the Java task? If you dont set these properties, logs should go to Ant's log - means to Cargo's Rah

Re: Logging output from the Java task?

2006-06-28 Thread Steve Loughran
Vincent Massol wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: mardi 27 juin 2006 17:52 To: user@ant.apache.org Subject: AW: Logging output from the Java task? Do you get the output of when using "Ant alone"? No. When using there's an "output" at

AW: Ant help for c compiler

2006-06-28 Thread Jan.Materne
Ant doesnt support C by its own. Have a look at AntContribs CC task http://ant-contrib.sourceforge.net/cc.html Jan Von: Sayed, Irfan (Irfan) [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 28. Juni 2006 13:00 An: user@ant.apache.org

Ant help for c compiler

2006-06-28 Thread Sayed, Irfan \(Irfan\)
Hi All,   I have been assign a task of migrating our build environment from make file base system to ant base system. Our code base has code of java, C and cpp. With Make file we are able to compile and generate the code. To migrate I have downloaded sample makefile (see the attached build

AW: build.properties

2006-06-28 Thread Jan.Materne
>In my build.xml if i want to get the the value of >"distpath.project" (path of my web application context in OC4J >server) from build.properties . > >What Changes i need to avil this requirement ? > >- > > > > > >value="F:/oc4j_extended/j2ee/home/applications"

build.properties

2006-06-28 Thread Raghuveer
In my build.xml if i want to get the the value of "distpath.project" (path of my web application context in OC4J server) from build.properties . What Changes i need to avil this requirement ? - --