Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1009 / binaries / w32 / build.xml @ 12649

History | View | Annotate | Download (1.12 KB)

1
<project name="binaries w32" default="main" basedir=".">
2
    <description>
3
        Reorganiza el directorio binaries/w32, para que pueda usarse directamente por gvSIG.
4
    </description>
5
        
6
        <property name="targetDir" location="." />
7
        
8
        <target name="main" depends="ecw, gdal, mrsid, system" />
9
        
10
        <target name="ecw">
11
                <copy todir="${targetDir}">
12
                        <fileset dir="raster/ecw" includes="jecw.dll jecwcompress.dll NCScnet.dll NCSEcwC.dll NCSEcw.dll NCSUtil.dll" />
13
                </copy>
14
        </target>
15
        
16
        <target name="gdal">
17
                <copy todir="${targetDir}">
18
                        <fileset dir="raster/gdal"
19
                                includes="gdal.dll glut32.dll jgdal060.dll jpeg62.dll libimage.dll libpng13.dll libtiff3.dll zlib1.dll"/>
20
                </copy>
21
        </target>
22
        
23
        <target name="mrsid">
24
                <copy todir="${targetDir}">
25
                        <fileset dir="raster/mrsid" includes="jmrsid.dll lti_dsdk_cdll.dll lti_dsdk_dll.dll" />
26
                </copy>
27
        </target>
28
        
29
        <target name="system">
30
                <copy todir="${targetDir}">
31
                        <fileset dir="system" includes="msvcp71.dll msvcr71.dll" />
32
                </copy>
33
        </target>
34
        
35
        <target name="clean">
36
                <delete>
37
                        <fileset
38
                                dir="${targetDir}"
39
                                includes="*.dll *.lib *.jar"/>
40
                </delete>
41
        </target>
42

    
43
</project>