Statistics
| Revision:

svn-gvsig-desktop / tags / v1_2_Build_1208 / binaries / w32 / build.xml @ 33932

History | View | Annotate | Download (1.58 KB)

1 13125 jmvivo
<project name="binaries w32" default="main" basedir=".">
2 13505 jcampos
        <description>
3 13125 jmvivo
        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
        <target name="main" depends="ecw, gdal, mrsid, crs, system, 3D" />
12
13 13125 jmvivo
        <target name="ecw">
14
                <copy todir="${targetDir}">
15
                        <fileset dir="raster/ecw" includes="jecw.dll jecwcompress.dll NCScnet.dll NCSEcwC.dll NCSEcw.dll NCSUtil.dll" />
16
                </copy>
17
        </target>
18 13505 jcampos
19 13125 jmvivo
        <target name="gdal">
20
                <copy todir="${targetDir}">
21 17630 nbrodin
                        <fileset dir="raster/gdal" includes="gdal.dll glut32.dll jgdal060.dll jpeg62.dll libimage.dll libpng13.dll libtiff3.dll zlib1.dll jaddo000.dll" />
22 13125 jmvivo
                </copy>
23
        </target>
24 13505 jcampos
25 13125 jmvivo
        <target name="mrsid">
26
                <copy todir="${targetDir}">
27
                        <fileset dir="raster/mrsid" includes="jmrsid.dll lti_dsdk_cdll.dll lti_dsdk_dll.dll" />
28
                </copy>
29
        </target>
30 13505 jcampos
31 13125 jmvivo
        <target name="system">
32
                <copy todir="${targetDir}">
33
                        <fileset dir="system" includes="msvcp71.dll msvcr71.dll" />
34
                </copy>
35
        </target>
36 13505 jcampos
37 13125 jmvivo
        <target name="crs">
38
                <copy todir="${targetDir}">
39
                        <fileset dir="crs" includes="CrsJniProj.dll proj.dll" />
40
                </copy>
41
        </target>
42 13505 jcampos
43
        <target name="3D" if="is3D">
44
                <copy todir="${targetDir}">
45
                        <fileset dir="3D" includes="**/**" />
46
                </copy>
47
        </target>
48
49
        <target name="clean3D" if="is3D">
50
                <delete includeemptydirs="true">
51
                        <fileset dir="${targetDir}" includes="osgPlugins**/**" />
52
                </delete>
53
        </target>
54 13125 jmvivo
55 13505 jcampos
        <target name="clean" depends="clean3D">
56 13125 jmvivo
                <delete>
57 13505 jcampos
                        <fileset dir="${targetDir}" includes="*.dll *.lib *.jar" />
58 13125 jmvivo
                </delete>
59
        </target>
60
61
</project>