Statistics
| Revision:

root / tags / v2_0_Build_1219 / binaries / w32 / build.xml @ 34606

History | View | Annotate | Download (1.84 KB)

1 13125 jmvivo
<project name="binaries w32" default="main" basedir=".">
2 13505 jcampos
        <description>
3 20093 bsanchez
                Reorganiza el directorio binaries/w32, para que pueda usarse directamente por gvSIG.
4
        </description>
5 13505 jcampos
6 13125 jmvivo
        <property name="targetDir" location="." />
7 13505 jcampos
8
9
        <available property="is3D" file="3D" />
10
11 23583 bsanchez
        <target name="main" depends="ecw, gdal, mrsid, crs, system, potrace, 3D" />
12
        <target name="without-3D" depends="ecw, gdal, mrsid, crs, system, potrace" />
13 13505 jcampos
14 13125 jmvivo
        <target name="ecw">
15
                <copy todir="${targetDir}">
16 21317 jmvivo
                        <fileset dir="raster/ecw" includes="jecw.dll NCScnet.dll NCSEcwC.dll NCSEcw.dll NCSUtil.dll" />
17 13125 jmvivo
                </copy>
18
        </target>
19 13505 jcampos
20 13125 jmvivo
        <target name="gdal">
21
                <copy todir="${targetDir}">
22 22535 bsanchez
                        <fileset dir="raster/gdal" includes="gdal.dll glut32.dll jgdal091.dll jpeg62.dll libimage.dll libpng13.dll libtiff3.dll zlib1.dll jaddo000.dll hdf5dll.dll hd422m.dll hm422m.dll szlibdll.dll" />
23 13125 jmvivo
                </copy>
24
        </target>
25 13505 jcampos
26 13125 jmvivo
        <target name="mrsid">
27
                <copy todir="${targetDir}">
28
                        <fileset dir="raster/mrsid" includes="jmrsid.dll lti_dsdk_cdll.dll lti_dsdk_dll.dll" />
29
                </copy>
30
        </target>
31 13505 jcampos
32 13125 jmvivo
        <target name="system">
33
                <copy todir="${targetDir}">
34 21383 jmvivo
                        <fileset dir="system" includes="msv*.dll *.manifest" />
35 13125 jmvivo
                </copy>
36
        </target>
37 13505 jcampos
38 13125 jmvivo
        <target name="crs">
39
                <copy todir="${targetDir}">
40
                        <fileset dir="crs" includes="CrsJniProj.dll proj.dll" />
41
                </copy>
42
        </target>
43 23583 bsanchez
44
        <target name="potrace">
45
                <copy todir="${targetDir}">
46
                        <fileset dir="raster/potrace" includes="libpotrace.dll jpotrace001.dll" />
47
                </copy>
48
        </target>
49
50 13505 jcampos
        <target name="3D" if="is3D">
51
                <copy todir="${targetDir}">
52
                        <fileset dir="3D" includes="**/**" />
53
                </copy>
54
        </target>
55
56
        <target name="clean3D" if="is3D">
57
                <delete includeemptydirs="true">
58
                        <fileset dir="${targetDir}" includes="osgPlugins**/**" />
59
                </delete>
60
        </target>
61 21317 jmvivo
62 13505 jcampos
        <target name="clean" depends="clean3D">
63 13125 jmvivo
                <delete>
64 13505 jcampos
                        <fileset dir="${targetDir}" includes="*.dll *.lib *.jar" />
65 13125 jmvivo
                </delete>
66
        </target>
67
68
</project>