----- Original Message -----
From: "Gordon Tyler" <[EMAIL PROTECTED]>
To: "Ant Users List" <[EMAIL PROTECTED]>
Sent: Thursday, May 30, 2002 9:46 AM
Subject: Re: <cc> (was Re: Java Development with Ant)
>
> ----- Original Message -----
> From: "Steve Loughran" <[EMAIL PROTECTED]>
>
>
> > I managed to use it to compile a JNI native library, with a single build
> > file going javac->javah->cc->junit. As a process for building jni libs,
> this
> > is slick, better than spawmning MSDEV as I have done in the past. That
> > works, but gives you the usual IDE portability grief.
>
> I would be very interested to hear how you did this since our builds are
> spawning MSDEV or make depending on the platform.
I run msdev like this:
<target name="msdev" depends="headers">
<exec
executable="msdev.exe"
failonerror="true"
>
<arg file="CpuInfo.dsw" />
<arg value="/MAKE"/>
<arg value=""CpuInfo - Release""/>
</exec>
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>