Statistics
| Revision:

root / tags / v1_1_Build_1012 / binaries / mac / build.xml @ 12987

History | View | Annotate | Download (1.07 KB)

1
<project name="binaries mac" default="main" basedir=".">
2
    <description>
3
        Reorganiza el directorio binaries/mac, para que pueda usarse directamente por gvSIG.
4
    </description>
5
        
6
        <property name="targetDir" location="." />
7
        
8
        <target name="main" depends="gdal, mrsid, crs" />
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="jgdal-0.4.0.jar libgdal.dylib libjgdal.jnilib"/>
20
                </copy>
21
        </target>
22
        
23
        <target name="mrsid">
24
                <copy todir="${targetDir}">
25
                        <fileset dir="raster/mrSID" includes="jmrsid-0.1.0.jar libjmrsid.jnilib" />
26
                </copy>
27
        </target>
28
        
29
        <target name="clean">
30
                <delete>
31
                        <fileset
32
                                dir="${targetDir}"
33
                                includes="*.dylib *.jnilib *.jar"/>
34
                </delete>
35
        </target>
36

    
37
        <target name="crs">
38
                <copy todir="${targetDir}">
39
                        <fileset dir="crs" includes="libcrsjniproj.jnilib libproj.dylib" />
40
                </copy>
41
        </target>
42

    
43
</project>