Statistics
| Revision:

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

History | View | Annotate | Download (1.58 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

    
9
        <available property="is3D" file="3D" />
10

    
11
        <target name="main" depends="ecw, gdal, mrsid, crs, system, 3D" />
12

    
13
        <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

    
19
        <target name="gdal">
20
                <copy todir="${targetDir}">
21
                        <fileset dir="raster/gdal" includes="gdal.dll glut32.dll jgdal060.dll jpeg62.dll libimage.dll libpng13.dll libtiff3.dll zlib1.dll jaddo000.dll" />
22
                </copy>
23
        </target>
24

    
25
        <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

    
31
        <target name="system">
32
                <copy todir="${targetDir}">
33
                        <fileset dir="system" includes="msvcp71.dll msvcr71.dll" />
34
                </copy>
35
        </target>
36

    
37
        <target name="crs">
38
                <copy todir="${targetDir}">
39
                        <fileset dir="crs" includes="CrsJniProj.dll proj.dll" />
40
                </copy>
41
        </target>
42

    
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
        
55
        <target name="clean" depends="clean3D">
56
                <delete>
57
                        <fileset dir="${targetDir}" includes="*.dll *.lib *.jar" />
58
                </delete>
59
        </target>
60

    
61
</project>