Re: Modifying Netbeans Ant to copy My JNI DLL files
"Ayodeji Aladejebi" <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.user-interface |
|---|---|
| Message-ID | <[email protected]> |
ok simpler than I thought. For any one that might need it: Netbeans allows
easy customization of the build process by allowing overriding of some
targets e.g post-compile
<target name="-post-compile">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
<echo>Copying DLL files into ${dist.dir}</echo>
<copy file="${basedir}/native.dll" tofile="${dist.dir}/native.dll"/>
</target>
On 4/24/07, Ayodeji Aladejebi <[email protected]> wrote:
>
> Some how the JNI files that come with my external libraries are not being
> copied to $dist folder during build process. What area do i alter in
> Netbeans Ant build script to make it copy my DLL files to classpath
>
> just a little help needed
>
>
>
>